Documentation ¶
Index ¶
- func ContextWithMessageStream(ctx context.Context, c *jsonrpc.MessageStream) context.Context
- func ContextWithPeerInfo(ctx context.Context, c jsonrpc.PeerInfo) context.Context
- func MessageStreamFromContext(ctx context.Context) *jsonrpc.MessageStream
- func PeerInfoFromContext(ctx context.Context) jsonrpc.PeerInfo
- type Server
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ContextWithMessageStream ¶ added in v0.3.17
func ContextWithPeerInfo ¶
func MessageStreamFromContext ¶ added in v0.3.17
func MessageStreamFromContext(ctx context.Context) *jsonrpc.MessageStream
func PeerInfoFromContext ¶
PeerInfoFromContext returns information about the client's network connection. Use this with the context passed to RPC method handler functions.
The zero value is returned if no connection info is present in ctx.
Types ¶
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server is an RPC server. it is in charge of calling the handler on the message object, the json encoding of responses, and dealing with batch semantics. a server can be used to listenandserve multiple codecs at a time
func (*Server) ServeCodec ¶
ServeCodec reads incoming requests from codec, calls the appropriate callback and writes the response back using the given codec. It will block until the codec is closed. the codec will return if either of these conditions are met 1. every request read from ReadBatch until ReadBatch returns context.Canceled is processed. 2. there is a server related error (failed encoding, broken conn) that was received while processing/reading messages.