Expand description
Re-exports§
pub use middleware::rpc::RpcServiceBuilder;
pub use jsonrpsee_types as types;
pub use tracing;
Modules§
- helpers
- Helpers.
- http
- HTTP related server functionality.
- middleware
- jsonrpsee-server middleware
- ws
- WebSocket related server functionality.
Structs§
- Already
Stopped Error - Error when the server has already been stopped.
- Batch
Response - Serialized batch response.
- Batch
Response Builder - Builder to build a
BatchResponse
. - Bounded
Subscriptions - This wraps
tokio::sync::Semaphore
and is used to limit the number of subscriptions per connection. - Bounded
Writer - Bounded writer that allows writing at most
max_len
bytes. - Connection
Guard - Limits the number of connections.
- Connection
Id - Connection ID.
- Connection
State - Connection related state that is needed to execute JSON-RPC calls.
- Disconnect
Error - Error that may occur during
crate::server::MethodSink::send
orcrate::server::SubscriptionSink::send
. - Extensions
- A type map of protocol extensions.
- Http
Body - Default HTTP body used by jsonrpsee.
- IsUnsubscribed
- Represents a subscription until it is unsubscribed.
- Method
Response - Represents a response to a method call.
- Method
Response Future - Future that resolves when the method response has been processed.
- Method
Response Notify Tx - Sends a message once the method response has been processed.
- Method
Sink - Sink that is used to send back the result to the server for a specific method.
- Methods
- Reference-counted, clone-on-write collection of synchronous and asynchronous methods.
- Noop
IdProvider - No-op implementation to be used for servers that don’t support subscriptions.
- Pending
Subscription Accept Error - The error returned while accepting a subscription.
- Pending
Subscription Sink - Represents a single subscription that is waiting to be accepted or rejected.
- Ping
Config - Configuration for WebSocket ping/pong mechanism and it may be used to disconnect an inactive connection.
- Random
Integer IdProvider - Generates random integers as subscription ID.
- Random
String IdProvider - Generates random strings of length
len
as subscription ID. - Response
Payload - Similar to
jsonrpsee_types::ResponsePayload
but possible to with an async-like API to detect when a method response has been sent. - RpcModule
- Sets of JSON-RPC methods can be organized into “module“s that are in turn registered on the server or,
alternatively, merged with other modules to construct a cohesive API.
RpcModule
wraps an additional context argument that can be used to access data during call execution. - Server
- JSON RPC server.
- Server
Builder - Builder to configure and create a JSON-RPC server
- Server
Config - Static server configuration which is shared per connection.
- Server
Handle - Server handle.
- Stop
Handle - Represent a stop handle which is a wrapper over a
multi-consumer receiver
and cloningStopHandle
will get a separate instance of the underlying receiver. - Subscription
- Wrapper struct that maintains a subscription “mainly” for testing.
- Subscription
Key - Represent a unique subscription entry based on
SubscriptionId
andConnectionId
. - Subscription
Message - Subscription message.
- Subscription
Sink - Represents a single subscription that hasn’t been processed yet.
- Subscription
State - Helper struct to manage subscriptions.
- Tower
Service - jsonrpsee tower service
- Tower
Service Builder - Builder for
TowerService
.
Enums§
- Batch
Request Config - Configuration for batch request handling.
- Call
OrSubscription - This represent a response to a RPC call
and
Subscribe
calls are handled differently because we want to prevent subscriptions to start before the actual subscription call has been answered. - Method
Callback - Callback wrapper that can be either sync or async.
- Method
Kind - The kind of the JSON-RPC method call, it can be a subscription, method call or unknown.
- Method
Response Error - Method response error.
- Method
Result - Result of a method, either direct value or a future of one.
- Methods
Error - The error that can occur when
Methods::call
orMethods::subscribe
is invoked. - Notify
Msg - A message that that tells whether notification was succesful or not.
- Register
Method Error - The error returned when registering a method or subscription failed.
- Send
Timeout Error - Error that may occur during
crate::server::MethodSink::send_timeout
orcrate::server::SubscriptionSink::send_timeout
. - Subscription
Close Response - Represents what action that will sent when a subscription callback returns.
- Subscription
Message Inner - A complete subscription message or partial subscription message.
- TrySend
Error - Error that may occur during
crate::server::MethodSink::try_send
orcrate::server::SubscriptionSink::try_send
.
Traits§
- IdProvider
- Trait to generate subscription IDs.
- Into
Response - Something that can be converted into a JSON-RPC method call response.
- Into
Subscription Close Response - Convert something into a subscription close notification before a subscription is terminated.
Functions§
- batch_
response_ error - Create a JSON-RPC error response.
- prepare_
error - Figure out if this is a sufficiently complete request that we can extract an
Id
out of, or just plain unparseable garbage. - serve
- Serve a service over a TCP connection without graceful shutdown. This means that pending requests will be dropped when the server is stopped.
- serve_
with_ graceful_ shutdown - Serve a service over a TCP connection with graceful shutdown. This means that pending requests will be completed before the server is stopped.
- stop_
channel - Create channel to determine whether the server shall continue to run or not.
Type Aliases§
- Async
Method - Similar to
SyncMethod
, but represents an asynchronous handler. - Connection
Permit - Connection permit.
- Http
Request - HTTP request type.
- Http
Response - HTTP response type.
- MaxResponse
Size - Max response size.
- RawRpc
Response - Raw response from an RPC A tuple containing:
- Subscribers
- Type-alias for subscribers.
- Subscription
Method - Method callback for subscriptions.
- Subscription
Permit - Subscription permit.
- Sync
Method - A
MethodCallback
is an RPC endpoint, callable with a standard JSON-RPC request, implemented as a function pointer to aFn
function taking four arguments: theid
,params
, a channel the function uses to communicate the result (or error) back tojsonrpsee
, and the connection ID (useful for the websocket transport).