pub struct RpcClientInner<T> { /* private fields */ }
Expand description
A JSON-RPC client.
This struct manages a Transport
and a request ID counter. It is used to
build RpcCall
and BatchRequest
objects. The client delegates
transport access to the calls.
§Note
IDs are allocated sequentially, starting at 0. IDs are reserved via
RpcClientInner::next_id
. Note that allocated IDs may not be used. There
is no guarantee that a prepared RpcCall
will be sent, or that a sent
call will receive a response.
Implementations§
Source§impl RpcClientInner<PubSubFrontend>
impl RpcClientInner<PubSubFrontend>
Sourcepub async fn get_raw_subscription(&self, id: B256) -> RawSubscription
Available on crate feature pubsub
only.
pub async fn get_raw_subscription(&self, id: B256) -> RawSubscription
pubsub
only.Get a RawSubscription
for the given subscription ID.
Sourcepub async fn get_subscription<T: DeserializeOwned>(
&self,
id: B256,
) -> Subscription<T>
Available on crate feature pubsub
only.
pub async fn get_subscription<T: DeserializeOwned>( &self, id: B256, ) -> Subscription<T>
pubsub
only.Get a Subscription
for the given subscription ID.
Source§impl<T> RpcClientInner<T>
impl<T> RpcClientInner<T>
Sourcepub const fn new(t: T, is_local: bool) -> Self
pub const fn new(t: T, is_local: bool) -> Self
Create a new RpcClient
with the given transport.
Note: Sets the poll interval to 250ms for local transports and 7s for remote transports by default.
Sourcepub fn poll_interval(&self) -> Duration
pub fn poll_interval(&self) -> Duration
Returns the default poll interval (milliseconds) for the client.
Sourcepub fn set_poll_interval(&self, poll_interval: Duration)
pub fn set_poll_interval(&self, poll_interval: Duration)
Set the poll interval for the client in milliseconds. Default: 7s for remote and 250ms for local transports.
Sourcepub fn transport_mut(&mut self) -> &mut T
pub fn transport_mut(&mut self) -> &mut T
Returns a mutable reference to the underlying transport.
Sourcepub fn into_transport(self) -> T
pub fn into_transport(self) -> T
Consumes the client and returns the underlying transport.
Sourcepub fn pubsub_frontend(&self) -> Option<&PubSubFrontend>where
T: Any,
Available on crate feature pubsub
only.
pub fn pubsub_frontend(&self) -> Option<&PubSubFrontend>where
T: Any,
pubsub
only.Returns a reference to the pubsub frontend if the transport supports it.
Sourcepub fn make_request<Params: RpcParam>(
&self,
method: impl Into<Cow<'static, str>>,
params: Params,
) -> Request<Params>
pub fn make_request<Params: RpcParam>( &self, method: impl Into<Cow<'static, str>>, params: Params, ) -> Request<Params>
Build a JsonRpcRequest
with the given method and params.
This function reserves an ID for the request, however the request is not sent.
To send a request, use RpcClientInner::request
and await the returned RpcCall
.
Sourcepub const fn is_local(&self) -> bool
pub const fn is_local(&self) -> bool
true
if the client believes the transport is local.
This can be used to optimize remote API usage, or to change program behavior on local endpoints. When the client is instantiated by parsing a URL or other external input, this value is set on a best-efforts basis and may be incorrect.
Source§impl<T: Transport + Clone> RpcClientInner<T>
impl<T: Transport + Clone> RpcClientInner<T>
Sourcepub fn request<Params: RpcParam, Resp: RpcReturn>(
&self,
method: impl Into<Cow<'static, str>>,
params: Params,
) -> RpcCall<T, Params, Resp> ⓘ
pub fn request<Params: RpcParam, Resp: RpcReturn>( &self, method: impl Into<Cow<'static, str>>, params: Params, ) -> RpcCall<T, Params, Resp> ⓘ
Prepares an RpcCall
.
This function reserves an ID for the request, however the request is not sent.
To send a request, await the returned RpcCall
.
§Note
Serialization is done lazily. It will not be performed until the call is awaited. This means that if a serializer error occurs, it will not be caught until the call is awaited.
Sourcepub fn request_noparams<Resp: RpcReturn>(
&self,
method: impl Into<Cow<'static, str>>,
) -> RpcCall<T, NoParams, Resp> ⓘ
pub fn request_noparams<Resp: RpcReturn>( &self, method: impl Into<Cow<'static, str>>, ) -> RpcCall<T, NoParams, Resp> ⓘ
Sourcepub fn boxed(self) -> RpcClientInner<BoxTransport>
pub fn boxed(self) -> RpcClientInner<BoxTransport>
Type erase the service in the transport, allowing it to be used in a generic context.
§Note:
This is for abstracting over RpcClient<T>
for multiple T
by
erasing each type. E.g. if you have RpcClient<Http>
and
RpcClient<Ws>
you can put both into a Vec<RpcClient<BoxTransport>>
.