rpc/registry/registry.go
crusader 81d3fff70a ing
2017-12-01 16:48:40 +09:00

11 lines
203 B
Go

package registry
import (
"git.loafle.net/commons_go/rpc/protocol"
)
type RPCInvoker interface {
HasMethod(method string) bool
Invoke(codec protocol.RegistryCodec) (result interface{}, err error)
}