overflow_discovery/server/server.go

24 lines
476 B
Go
Raw Normal View History

2017-10-26 12:55:55 +00:00
package server
import (
2017-11-15 06:59:43 +00:00
cr "git.loafle.net/commons_go/rpc"
crpj "git.loafle.net/commons_go/rpc/protocol/json"
2017-10-26 12:55:55 +00:00
"git.loafle.net/commons_go/server"
2017-11-15 06:59:43 +00:00
"git.loafle.net/overflow/overflow_discovery/rpc"
2017-10-26 12:55:55 +00:00
)
2017-11-15 06:59:43 +00:00
func New(addr string) server.Server {
rpcRegistry := cr.NewRegistry()
rpc.RegisterRPC(rpcRegistry)
rpcSH := newRPCServerHandler(rpcRegistry)
rpcSH.RegisterCodec(crpj.NewServerCodec(), crpj.Name)
2017-10-26 12:55:55 +00:00
2017-11-15 06:59:43 +00:00
sh := newServerHandler(addr, rpcSH)
2017-10-26 12:55:55 +00:00
2017-11-01 06:35:03 +00:00
s := server.New(sh)
2017-10-26 12:55:55 +00:00
return s
}