Documentation ¶
Index ¶
- Variables
- type API
- type BatchElem
- type ChannelTimeouts
- type ClientSubscription
- type Conn
- type ConnRemoteAddr
- type Connection
- func ClientFromContext(ctx context.Context) (*Connection, bool)
- func DialChannelWithClient(endpoint string, config *tls.Config, groupID int) (*Connection, error)
- func DialContextChannel(rawurl, caFile, certFile, keyFile string, groupID int) (*Connection, error)
- func DialContextHTTP(rawurl string) (*Connection, error)
- func DialHTTP(endpoint string) (*Connection, error)
- func DialHTTPWithClient(endpoint string, client *http.Client) (*Connection, error)
- func (c *Connection) AsyncSendTransaction(ctx context.Context, handler func(*types.Receipt, error), method string, ...) error
- func (c *Connection) BatchCall(b []BatchElem) error
- func (c *Connection) BatchCallContext(ctx context.Context, b []BatchElem) error
- func (c *Connection) BroadcastAMOPMsg(topic string, data []byte) error
- func (c *Connection) BroadcastAMOPPrivateMsg(topic string, data []byte) error
- func (c *Connection) Call(result interface{}, method string, args ...interface{}) error
- func (c *Connection) CallContext(ctx context.Context, result interface{}, method string, args ...interface{}) error
- func (c *Connection) Close()
- func (c *Connection) EthSubscribe(ctx context.Context, channel interface{}, args ...interface{}) (*ClientSubscription, error)
- func (c *Connection) GetBlockNumber() int64
- func (c *Connection) IsHTTP() bool
- func (c *Connection) Notify(ctx context.Context, method string, args ...interface{}) error
- func (c *Connection) PublishPrivateTopic(topic string, publicKey []*ecdsa.PublicKey) error
- func (c *Connection) RegisterName(name string, receiver interface{}) error
- func (c *Connection) SendAMOPMsg(topic string, data []byte) error
- func (c *Connection) SendAMOPPrivateMsg(topic string, data []byte) error
- func (c *Connection) ShhSubscribe(ctx context.Context, channel interface{}, args ...interface{}) (*ClientSubscription, error)
- func (c *Connection) Subscribe(ctx context.Context, namespace string, channel interface{}, ...) (*ClientSubscription, error)
- func (c *Connection) SubscribeBlockNumberNotify(groupID uint64, handler func(int64)) error
- func (c *Connection) SubscribePrivateTopic(topic string, privateKey *ecdsa.PrivateKey, handler func([]byte)) error
- func (c *Connection) SubscribeTopic(topic string, handler func([]byte)) error
- func (c *Connection) SupportedModules() (map[string]string, error)
- func (c *Connection) UnsubscribeBlockNumberNotify(groupID uint64) error
- func (c *Connection) UnsubscribePrivateTopic(topic string) error
- func (c *Connection) UnsubscribeTopic(topic string) error
- type Error
- type HTTPTimeouts
- type ID
- type Notifier
- type ServerCodec
- type Subscription
Constants ¶
This section is empty.
Variables ¶
var ( ErrClientQuit = errors.New("client is closed") ErrNoResult = errors.New("no result in JSON-RPC response") ErrSubscriptionQueueOverflow = errors.New("subscription queue overflow") )
var ( // ErrNotificationsUnsupported is returned when the connection doesn't support notifications ErrNotificationsUnsupported = errors.New("notifications not supported") // ErrSubscriptionNotFound is returned when the notification for the given id is not found ErrSubscriptionNotFound = errors.New("subscription not found") )
var DefaultChannelTimeouts = ChannelTimeouts{ ReadTimeout: 30 * time.Second, WriteTimeout: 30 * time.Second, IdleTimeout: 120 * time.Second, }
DefaultChannelTimeouts represents the default timeout values used if further configuration is not provided.
var DefaultHTTPTimeouts = HTTPTimeouts{ ReadTimeout: 30 * time.Second, WriteTimeout: 30 * time.Second, IdleTimeout: 120 * time.Second, }
DefaultHTTPTimeouts represents the default timeout values used if further configuration is not provided.
Functions ¶
This section is empty.
Types ¶
type API ¶
type API struct { Namespace string // namespace under which the rpc methods of Service are exposed Version string // api version for DApp's Service interface{} // receiver instance which holds the methods Public bool // indication if the methods must be considered safe for public use }
API describes the set of methods offered over the RPC interface
type BatchElem ¶
type BatchElem struct { Method string Args []interface{} // The result is unmarshaled into this field. Result must be set to a // non-nil pointer value of the desired type, otherwise the response will be // discarded. Result interface{} // Error is set if the server returns an error for this request, or if // unmarshaling into Result fails. It is not set for I/O errors. Error error }
BatchElem is an element in a batch request.
type ChannelTimeouts ¶
type ChannelTimeouts struct { // ReadTimeout is the maximum duration for reading the entire // request, including the body. // // Because ReadTimeout does not let Handlers make per-request // decisions on each request body's acceptable deadline or // upload rate, most users will prefer to use // ReadHeaderTimeout. It is valid to use them both. ReadTimeout time.Duration // WriteTimeout is the maximum duration before timing out // writes of the response. It is reset whenever a new // request's header is read. Like ReadTimeout, it does not // let Handlers make decisions on a per-request basis. WriteTimeout time.Duration // IdleTimeout is the maximum amount of time to wait for the // next request when keep-alives are enabled. If IdleTimeout // is zero, the value of ReadTimeout is used. If both are // zero, ReadHeaderTimeout is used. IdleTimeout time.Duration }
ChannelTimeouts represents the configuration params for the Channel RPC server.
type ClientSubscription ¶
type ClientSubscription struct {
// contains filtered or unexported fields
}
ClientSubscription is a subscription established through the Connection's Subscribe or EthSubscribe methods.
func (*ClientSubscription) Err ¶
func (sub *ClientSubscription) Err() <-chan error
Err returns the subscription error channel. The intended use of Err is to schedule resubscription when the client connection is closed unexpectedly.
The error channel receives a value when the subscription has ended due to an error. The received error is nil if Close has been called on the underlying client and no other error has occurred.
The error channel is closed when Unsubscribe is called on the subscription.
func (*ClientSubscription) Unsubscribe ¶
func (sub *ClientSubscription) Unsubscribe()
Unsubscribe unsubscribes the notification and closes the error channel. It can safely be called more than once.
type Conn ¶
type Conn interface { io.ReadWriteCloser SetWriteDeadline(time.Time) error }
Conn is a subset of the methods of net.Conn which are sufficient for ServerCodec.
type ConnRemoteAddr ¶
type ConnRemoteAddr interface {
RemoteAddr() string
}
ConnRemoteAddr wraps the RemoteAddr operation, which returns a description of the peer address of a connection. If a Conn also implements ConnRemoteAddr, this description is used in log messages.
type Connection ¶
type Connection struct {
// contains filtered or unexported fields
}
Connection represents a connection to an RPC server.
func ClientFromContext ¶
func ClientFromContext(ctx context.Context) (*Connection, bool)
ClientFromContext Connection retrieves the client from the context, if any. This can be used to perform 'reverse calls' in a handler method.
func DialChannelWithClient ¶
DialChannelWithClient creates a new RPC client that connects to an RPC server over Channel using the provided Channel Client.
func DialContextChannel ¶
func DialContextChannel(rawurl, caFile, certFile, keyFile string, groupID int) (*Connection, error)
DialContextChannel creates a new Channel client, just like Dial.
func DialContextHTTP ¶
func DialContextHTTP(rawurl string) (*Connection, error)
DialContextHTTP creates a new RPC client, just like Dial.
The context is used to cancel or time out the initial connection establishment. It does not affect subsequent interactions with the client.
func DialHTTP ¶
func DialHTTP(endpoint string) (*Connection, error)
DialHTTP creates a new RPC client that connects to an RPC server over HTTP.
func DialHTTPWithClient ¶
func DialHTTPWithClient(endpoint string, client *http.Client) (*Connection, error)
DialHTTPWithClient creates a new RPC client that connects to an RPC server over HTTP using the provided HTTP Client.
func (*Connection) AsyncSendTransaction ¶
func (*Connection) BatchCall ¶
func (c *Connection) BatchCall(b []BatchElem) error
BatchCall sends all given requests as a single batch and waits for the server to return a response for all of them.
In contrast to Call, BatchCall only returns I/O errors. Any error specific to a request is reported through the Error field of the corresponding BatchElem.
Note that batch calls may not be executed atomically on the server side.
func (*Connection) BatchCallContext ¶
func (c *Connection) BatchCallContext(ctx context.Context, b []BatchElem) error
BatchCall sends all given requests as a single batch and waits for the server to return a response for all of them. The wait duration is bounded by the context's deadline.
In contrast to CallContext, BatchCallContext only returns errors that have occurred while sending the request. Any error specific to a request is reported through the Error field of the corresponding BatchElem.
Note that batch calls may not be executed atomically on the server side.
func (*Connection) BroadcastAMOPMsg ¶
func (c *Connection) BroadcastAMOPMsg(topic string, data []byte) error
func (*Connection) BroadcastAMOPPrivateMsg ¶
func (c *Connection) BroadcastAMOPPrivateMsg(topic string, data []byte) error
func (*Connection) Call ¶
func (c *Connection) Call(result interface{}, method string, args ...interface{}) error
Call performs a JSON-RPC call with the given arguments and unmarshals into result if no error occurred.
The result must be a pointer so that package json can unmarshal into it. You can also pass nil, in which case the result is ignored.
func (*Connection) CallContext ¶
func (c *Connection) CallContext(ctx context.Context, result interface{}, method string, args ...interface{}) error
CallContext performs a JSON-RPC call with the given arguments. If the context is canceled before the call has successfully returned, CallContext returns immediately.
The result must be a pointer so that package json can unmarshal into it. You can also pass nil, in which case the result is ignored.
func (*Connection) Close ¶
func (c *Connection) Close()
Close closes the client, aborting any in-flight requests.
func (*Connection) EthSubscribe ¶
func (c *Connection) EthSubscribe(ctx context.Context, channel interface{}, args ...interface{}) (*ClientSubscription, error)
EthSubscribe registers a subscripion under the "eth" namespace.
func (*Connection) GetBlockNumber ¶
func (c *Connection) GetBlockNumber() int64
GetBlockLimit returns BlockLimit
func (*Connection) Notify ¶
func (c *Connection) Notify(ctx context.Context, method string, args ...interface{}) error
Notify sends a notification, i.e. a method call that doesn't expect a response.
func (*Connection) PublishPrivateTopic ¶
func (c *Connection) PublishPrivateTopic(topic string, publicKey []*ecdsa.PublicKey) error
func (*Connection) RegisterName ¶
func (c *Connection) RegisterName(name string, receiver interface{}) error
RegisterName creates a service for the given receiver type under the given name. When no methods on the given receiver match the criteria to be either a RPC method or a subscription an error is returned. Otherwise a new service is created and added to the service collection this client provides to the server.
func (*Connection) SendAMOPMsg ¶
func (c *Connection) SendAMOPMsg(topic string, data []byte) error
func (*Connection) SendAMOPPrivateMsg ¶
func (c *Connection) SendAMOPPrivateMsg(topic string, data []byte) error
func (*Connection) ShhSubscribe ¶
func (c *Connection) ShhSubscribe(ctx context.Context, channel interface{}, args ...interface{}) (*ClientSubscription, error)
ShhSubscribe registers a subscripion under the "shh" namespace.
func (*Connection) Subscribe ¶
func (c *Connection) Subscribe(ctx context.Context, namespace string, channel interface{}, args ...interface{}) (*ClientSubscription, error)
Subscribe calls the "<namespace>_subscribe" method with the given arguments, registering a subscription. Server notifications for the subscription are sent to the given channel. The element type of the channel must match the expected type of content returned by the subscription.
The context argument cancels the RPC request that sets up the subscription but has no effect on the subscription after Subscribe has returned.
Slow subscribers will be dropped eventually. Connection buffers up to 20000 notifications before considering the subscriber dead. The subscription Err channel will receive ErrSubscriptionQueueOverflow. Use a sufficiently large buffer on the channel or ensure that the channel usually has at least one reader to prevent this issue.
func (*Connection) SubscribeBlockNumberNotify ¶
func (c *Connection) SubscribeBlockNumberNotify(groupID uint64, handler func(int64)) error
func (*Connection) SubscribePrivateTopic ¶
func (c *Connection) SubscribePrivateTopic(topic string, privateKey *ecdsa.PrivateKey, handler func([]byte)) error
func (*Connection) SubscribeTopic ¶
func (c *Connection) SubscribeTopic(topic string, handler func([]byte)) error
func (*Connection) SupportedModules ¶
func (c *Connection) SupportedModules() (map[string]string, error)
SupportedModules calls the rpc_modules method, retrieving the list of APIs that are available on the server.
func (*Connection) UnsubscribeBlockNumberNotify ¶
func (c *Connection) UnsubscribeBlockNumberNotify(groupID uint64) error
func (*Connection) UnsubscribePrivateTopic ¶
func (c *Connection) UnsubscribePrivateTopic(topic string) error
func (*Connection) UnsubscribeTopic ¶
func (c *Connection) UnsubscribeTopic(topic string) error
type HTTPTimeouts ¶
type HTTPTimeouts struct { // ReadTimeout is the maximum duration for reading the entire // request, including the body. // // Because ReadTimeout does not let Handlers make per-request // decisions on each request body's acceptable deadline or // upload rate, most users will prefer to use // ReadHeaderTimeout. It is valid to use them both. ReadTimeout time.Duration // WriteTimeout is the maximum duration before timing out // writes of the response. It is reset whenever a new // request's header is read. Like ReadTimeout, it does not // let Handlers make decisions on a per-request basis. WriteTimeout time.Duration // IdleTimeout is the maximum amount of time to wait for the // next request when keep-alives are enabled. If IdleTimeout // is zero, the value of ReadTimeout is used. If both are // zero, ReadHeaderTimeout is used. IdleTimeout time.Duration }
HTTPTimeouts represents the configuration params for the HTTP RPC server.
type ID ¶
type ID string
ID defines a pseudo random number that is used to identify RPC subscriptions.
type Notifier ¶
type Notifier struct {
// contains filtered or unexported fields
}
Notifier is tied to a RPC connection that supports subscriptions. Server callbacks use the notifier to send notifications.
func NotifierFromContext ¶
NotifierFromContext returns the Notifier value stored in ctx, if any.
func (*Notifier) Closed ¶
func (n *Notifier) Closed() <-chan interface{}
Closed returns a channel that is closed when the RPC connection is closed. Deprecated: use subscription error channel
func (*Notifier) CreateSubscription ¶
func (n *Notifier) CreateSubscription() *Subscription
CreateSubscription returns a new subscription that is coupled to the RPC connection. By default subscriptions are inactive and notifications are dropped until the subscription is marked as active. This is done by the RPC server after the subscription ID is send to the client.
type ServerCodec ¶
type ServerCodec interface { Read() (msgs []*jsonrpcMessage, isBatch bool, err error) Close() // contains filtered or unexported methods }
ServerCodec implements reading, parsing and writing RPC messages for the server side of a RPC session. Implementations must be go-routine safe since the codec can be called in multiple go-routines concurrently.
func NewCodec ¶
func NewCodec(conn Conn, encode, decode func(v interface{}) error) ServerCodec
NewCodec creates a new RPC server codec with support for JSON-RPC 2.0 based on explicitly given encoding and decoding methods.
func NewJSONCodec ¶
func NewJSONCodec(conn Conn) ServerCodec
NewJSONCodec creates a new RPC server codec with support for JSON-RPC 2.0.
type Subscription ¶
type Subscription struct { ID ID // contains filtered or unexported fields }
A Subscription is created by a notifier and tight to that notifier. The client can use this subscription to wait for an unsubscribe request for the client, see Err().
func (*Subscription) Err ¶
func (s *Subscription) Err() <-chan error
Err returns a channel that is closed when the client send an unsubscribe request.
func (*Subscription) MarshalJSON ¶
func (s *Subscription) MarshalJSON() ([]byte, error)
MarshalJSON marshals a subscription as its ID.