overflow_discovery/client/client_handlers.go

23 lines
407 B
Go
Raw Normal View History

2017-10-31 19:27:26 +09:00
package client
import (
"git.loafle.net/commons_go/rpc"
2017-11-01 12:20:52 +09:00
"git.loafle.net/commons_go/rpc/client"
2017-11-01 15:47:59 +09:00
"git.loafle.net/commons_go/rpc/protocol/json"
2017-10-31 19:27:26 +09:00
)
2017-11-15 16:02:32 +09:00
func NewClientHandler(addr string, registry rpc.Registry) ClientHandler {
2017-10-31 19:27:26 +09:00
ch := &ClientHandlers{}
2017-11-01 12:20:52 +09:00
ch.addr = addr
ch.RPCRegistry = registry
2017-11-01 15:47:59 +09:00
ch.Codec = json.NewClientCodec()
2017-10-31 19:27:26 +09:00
return ch
}
type ClientHandlers struct {
2017-11-01 12:20:52 +09:00
client.ClientHandlers
2017-10-31 19:27:26 +09:00
2017-11-01 12:20:52 +09:00
addr string
2017-10-31 19:27:26 +09:00
}