pub struct PubsubClient {}
Expand description
A client for subscribing to messages from the RPC server.
See the module documentation.
Implementations§
Source§impl PubsubClient
impl PubsubClient
Sourcepub fn account_subscribe(
url: &str,
pubkey: &Pubkey,
config: Option<RpcAccountInfoConfig>,
) -> Result<AccountSubscription, PubsubClientError>
pub fn account_subscribe( url: &str, pubkey: &Pubkey, config: Option<RpcAccountInfoConfig>, ) -> Result<AccountSubscription, PubsubClientError>
Subscribe to account events.
Receives messages of type UiAccount
when an account’s lamports or data changes.
§RPC Reference
This method corresponds directly to the accountSubscribe
RPC method.
Sourcepub fn block_subscribe(
url: &str,
filter: RpcBlockSubscribeFilter,
config: Option<RpcBlockSubscribeConfig>,
) -> Result<BlockSubscription, PubsubClientError>
pub fn block_subscribe( url: &str, filter: RpcBlockSubscribeFilter, config: Option<RpcBlockSubscribeConfig>, ) -> Result<BlockSubscription, PubsubClientError>
Subscribe to block events.
Receives messages of type RpcBlockUpdate
when a block is confirmed or finalized.
This method is disabled by default. It can be enabled by passing
--rpc-pubsub-enable-block-subscription
to agave-validator
.
§RPC Reference
This method corresponds directly to the blockSubscribe
RPC method.
Sourcepub fn logs_subscribe(
url: &str,
filter: RpcTransactionLogsFilter,
config: RpcTransactionLogsConfig,
) -> Result<LogsSubscription, PubsubClientError>
pub fn logs_subscribe( url: &str, filter: RpcTransactionLogsFilter, config: RpcTransactionLogsConfig, ) -> Result<LogsSubscription, PubsubClientError>
Subscribe to transaction log events.
Receives messages of type RpcLogsResponse
when a transaction is committed.
§RPC Reference
This method corresponds directly to the logsSubscribe
RPC method.
Sourcepub fn program_subscribe(
url: &str,
pubkey: &Pubkey,
config: Option<RpcProgramAccountsConfig>,
) -> Result<ProgramSubscription, PubsubClientError>
pub fn program_subscribe( url: &str, pubkey: &Pubkey, config: Option<RpcProgramAccountsConfig>, ) -> Result<ProgramSubscription, PubsubClientError>
Subscribe to program account events.
Receives messages of type RpcKeyedAccount
when an account owned
by the given program changes.
§RPC Reference
This method corresponds directly to the programSubscribe
RPC method.
Sourcepub fn vote_subscribe(url: &str) -> Result<VoteSubscription, PubsubClientError>
pub fn vote_subscribe(url: &str) -> Result<VoteSubscription, PubsubClientError>
Subscribe to vote events.
Receives messages of type RpcVote
when a new vote is observed. These
votes are observed prior to confirmation and may never be confirmed.
This method is disabled by default. It can be enabled by passing
--rpc-pubsub-enable-vote-subscription
to agave-validator
.
§RPC Reference
This method corresponds directly to the voteSubscribe
RPC method.
Sourcepub fn root_subscribe(url: &str) -> Result<RootSubscription, PubsubClientError>
pub fn root_subscribe(url: &str) -> Result<RootSubscription, PubsubClientError>
Subscribe to root events.
Receives messages of type Slot
when a new root is set by the
validator.
§RPC Reference
This method corresponds directly to the rootSubscribe
RPC method.
Sourcepub fn signature_subscribe(
url: &str,
signature: &Signature,
config: Option<RpcSignatureSubscribeConfig>,
) -> Result<SignatureSubscription, PubsubClientError>
pub fn signature_subscribe( url: &str, signature: &Signature, config: Option<RpcSignatureSubscribeConfig>, ) -> Result<SignatureSubscription, PubsubClientError>
Subscribe to transaction confirmation events.
Receives messages of type RpcSignatureResult
when a transaction
with the given signature is committed.
This is a subscription to a single notification. It is automatically cancelled by the server once the notification is sent.
§RPC Reference
This method corresponds directly to the signatureSubscribe
RPC method.
Sourcepub fn slot_subscribe(url: &str) -> Result<SlotsSubscription, PubsubClientError>
pub fn slot_subscribe(url: &str) -> Result<SlotsSubscription, PubsubClientError>
Subscribe to slot events.
Receives messages of type SlotInfo
when a slot is processed.
§RPC Reference
This method corresponds directly to the slotSubscribe
RPC method.
Sourcepub fn slot_updates_subscribe(
url: &str,
handler: impl Fn(SlotUpdate) + Send + 'static,
) -> Result<PubsubClientSubscription<SlotUpdate>, PubsubClientError>
pub fn slot_updates_subscribe( url: &str, handler: impl Fn(SlotUpdate) + Send + 'static, ) -> Result<PubsubClientSubscription<SlotUpdate>, PubsubClientError>
Subscribe to slot update events.
Receives messages of type SlotUpdate
when various updates to a slot occur.
Note that this method operates differently than other subscriptions:
instead of sending the message to a receiver on a channel, it accepts a
handler
callback that processes the message directly. This processing
occurs on another thread.
§RPC Reference
This method corresponds directly to the slotUpdatesSubscribe
RPC method.
Auto Trait Implementations§
impl Freeze for PubsubClient
impl RefUnwindSafe for PubsubClient
impl Send for PubsubClient
impl Sync for PubsubClient
impl Unpin for PubsubClient
impl UnwindSafe for PubsubClient
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more