rpc/protocol/server_codec.go
crusader 8e43174376 ing
2017-10-31 18:25:44 +09:00

19 lines
455 B
Go

package protocol
import (
"io"
)
// ServerCodec creates a ServerCodecRequest to process each request.
type ServerCodec interface {
NewRequest(r io.Reader) (ServerCodecRequest, error)
}
// ServerCodecRequest decodes a request and encodes a response using a specific
// serialization scheme.
type ServerCodecRequest interface {
RegistryCodec
WriteResponse(w io.Writer, reply interface{}) error
WriteError(w io.Writer, status int, err error) error
}