Documentation
¶
Index ¶
- Constants
- func WithErrors(es Errors) func(c *Config)
- func WithNoReconnect() func(c *Config)
- func WithParamEncoder(t interface{}, encoder ParamEncoder) func(c *Config)
- func WithPingInterval(d time.Duration) func(c *Config)
- func WithReconnectBackoff(minDelay, maxDelay time.Duration) func(c *Config)
- func WithTimeout(d time.Duration) func(c *Config)
- type ClientCloser
- type Config
- type ErrClient
- type ErrorCode
- type Errors
- type Option
- type ParamDecoder
- type ParamEncoder
- type RPCConnectionError
- type RPCServer
- type ServerConfig
- type ServerOption
Constants ¶
const DEFAULT_MAX_REQUEST_SIZE = 100 << 20 // 100 MiB
Limit request size. Ideally this limit should be specific for each field in the JSON request but as a simple defensive measure we just limit the entire HTTP body. Configured by WithMaxRequestSize.
const FirstUserCode = 2
Variables ¶
This section is empty.
Functions ¶
func WithErrors ¶ added in v0.1.6
func WithNoReconnect ¶ added in v0.1.2
func WithNoReconnect() func(c *Config)
func WithParamEncoder ¶ added in v0.1.1
func WithParamEncoder(t interface{}, encoder ParamEncoder) func(c *Config)
func WithPingInterval ¶ added in v0.1.2
Must be < Timeout/2
func WithReconnectBackoff ¶ added in v0.1.1
func WithTimeout ¶ added in v0.1.2
Types ¶
type ClientCloser ¶
type ClientCloser func()
ClientCloser is used to close Client from further use
func NewClient ¶
func NewClient(ctx context.Context, addr string, namespace string, handler interface{}, requestHeader http.Header) (ClientCloser, error)
NewClient creates new jsonrpc 2.0 client
handler must be pointer to a struct with function fields Returned value closes the client connection TODO: Example
func NewMergeClient ¶
func NewMergeClient(ctx context.Context, addr string, namespace string, outs []interface{}, requestHeader http.Header, opts ...Option) (ClientCloser, error)
NewMergeClient is like NewClient, but allows to specify multiple structs to be filled in the same namespace, using one connection
type ErrClient ¶
type ErrClient struct {
// contains filtered or unexported fields
}
ErrClient is an error which occurred on the client side the library
type ParamDecoder ¶ added in v0.1.1
type RPCConnectionError ¶ added in v0.1.7
type RPCConnectionError struct {
// contains filtered or unexported fields
}
func (*RPCConnectionError) Error ¶ added in v0.1.7
func (e *RPCConnectionError) Error() string
func (*RPCConnectionError) Unwrap ¶ added in v0.1.7
func (e *RPCConnectionError) Unwrap() error
type RPCServer ¶
type RPCServer struct {
// contains filtered or unexported fields
}
RPCServer provides a jsonrpc 2.0 http server handler
func NewServer ¶
func NewServer(opts ...ServerOption) *RPCServer
NewServer creates new RPCServer instance
func (*RPCServer) AliasMethod ¶ added in v0.1.2
type ServerConfig ¶ added in v0.1.1
type ServerConfig struct {
// contains filtered or unexported fields
}
type ServerOption ¶ added in v0.1.1
type ServerOption func(c *ServerConfig)
func WithMaxRequestSize ¶ added in v0.1.2
func WithMaxRequestSize(max int64) ServerOption
func WithParamDecoder ¶ added in v0.1.1
func WithParamDecoder(t interface{}, decoder ParamDecoder) ServerOption
func WithServerErrors ¶ added in v0.1.6
func WithServerErrors(es Errors) ServerOption