rpc-go/protocol/server_codec.go
crusader 83215a8fd2 ing
2018-04-06 16:50:10 +09:00

18 lines
575 B
Go

package protocol
// ServerCodec creates a ServerRequestCodec to process each request.
type ServerCodec interface {
NewRequest(buf []byte) (ServerRequestCodec, error)
NewRequestWithString(method string, params []string, id interface{}) (ServerRequestCodec, error)
NewNotification(method string, args []interface{}) ([]byte, error)
}
// ServerRequestCodec decodes a request and encodes a response using a specific
// serialization scheme.
type ServerRequestCodec interface {
RegistryCodec
HasResponse() bool
NewResponse(reply interface{}, err error) ([]byte, error)
}