pub struct PubsubClient { /* private fields */ }
Expand description
A client for subscribing to messages from the RPC server.
See the module documentation.
Implementations§
Source§impl PubsubClient
impl PubsubClient
pub async fn new(url: &str) -> Result<PubsubClient, PubsubClientError>
Sourcepub fn is_running(&self) -> bool
pub fn is_running(&self) -> bool
Returns true if the underlying Ws connection task is running
NB: the actual Ws may be either connected or reconnecting
pub async fn shutdown(self) -> Result<(), PubsubClientError>
Sourcepub async fn account_subscribe(
&self,
pubkey: &Pubkey,
config: Option<RpcAccountInfoConfig>,
) -> Result<(Pin<Box<dyn Stream<Item = Response<UiAccount>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn account_subscribe( &self, pubkey: &Pubkey, config: Option<RpcAccountInfoConfig>, ) -> Result<(Pin<Box<dyn Stream<Item = Response<UiAccount>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn block_subscribe(
&self,
filter: RpcBlockSubscribeFilter,
config: Option<RpcBlockSubscribeConfig>,
) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcBlockUpdate>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn block_subscribe( &self, filter: RpcBlockSubscribeFilter, config: Option<RpcBlockSubscribeConfig>, ) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcBlockUpdate>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn logs_subscribe(
&self,
filter: RpcTransactionLogsFilter,
config: RpcTransactionLogsConfig,
) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcLogsResponse>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn logs_subscribe( &self, filter: RpcTransactionLogsFilter, config: RpcTransactionLogsConfig, ) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcLogsResponse>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn program_subscribe(
&self,
pubkey: &Pubkey,
config: Option<RpcProgramAccountsConfig>,
) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcKeyedAccount>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn program_subscribe( &self, pubkey: &Pubkey, config: Option<RpcProgramAccountsConfig>, ) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcKeyedAccount>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn vote_subscribe(
&self,
) -> Result<(Pin<Box<dyn Stream<Item = RpcVote> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn vote_subscribe( &self, ) -> Result<(Pin<Box<dyn Stream<Item = RpcVote> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn root_subscribe(
&self,
) -> Result<(Pin<Box<dyn Stream<Item = u64> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn root_subscribe( &self, ) -> Result<(Pin<Box<dyn Stream<Item = u64> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn signature_subscribe(
&self,
signature: &Signature,
config: Option<RpcSignatureSubscribeConfig>,
) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcSignatureResult>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn signature_subscribe( &self, signature: &Signature, config: Option<RpcSignatureSubscribeConfig>, ) -> Result<(Pin<Box<dyn Stream<Item = Response<RpcSignatureResult>> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn slot_subscribe(
&self,
) -> Result<(Pin<Box<dyn Stream<Item = SlotInfo> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn slot_subscribe( &self, ) -> Result<(Pin<Box<dyn Stream<Item = SlotInfo> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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 async fn slot_updates_subscribe(
&self,
) -> Result<(Pin<Box<dyn Stream<Item = SlotUpdate> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), PubsubClientError>
pub async fn slot_updates_subscribe( &self, ) -> Result<(Pin<Box<dyn Stream<Item = SlotUpdate> + Send + '_>>, Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send>), 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.
Trait Implementations§
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> AlignerFor<1> for T
impl<T> AlignerFor<1> for T
Source§impl<T> AlignerFor<1024> for T
impl<T> AlignerFor<1024> for T
Source§type Aligner = AlignTo1024<T>
type Aligner = AlignTo1024<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<128> for T
impl<T> AlignerFor<128> for T
Source§type Aligner = AlignTo128<T>
type Aligner = AlignTo128<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<16> for T
impl<T> AlignerFor<16> for T
Source§impl<T> AlignerFor<16384> for T
impl<T> AlignerFor<16384> for T
Source§type Aligner = AlignTo16384<T>
type Aligner = AlignTo16384<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<2> for T
impl<T> AlignerFor<2> for T
Source§impl<T> AlignerFor<2048> for T
impl<T> AlignerFor<2048> for T
Source§type Aligner = AlignTo2048<T>
type Aligner = AlignTo2048<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<256> for T
impl<T> AlignerFor<256> for T
Source§type Aligner = AlignTo256<T>
type Aligner = AlignTo256<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<32> for T
impl<T> AlignerFor<32> for T
Source§impl<T> AlignerFor<32768> for T
impl<T> AlignerFor<32768> for T
Source§type Aligner = AlignTo32768<T>
type Aligner = AlignTo32768<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<4> for T
impl<T> AlignerFor<4> for T
Source§impl<T> AlignerFor<4096> for T
impl<T> AlignerFor<4096> for T
Source§type Aligner = AlignTo4096<T>
type Aligner = AlignTo4096<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<512> for T
impl<T> AlignerFor<512> for T
Source§type Aligner = AlignTo512<T>
type Aligner = AlignTo512<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.Source§impl<T> AlignerFor<64> for T
impl<T> AlignerFor<64> for T
Source§impl<T> AlignerFor<8> for T
impl<T> AlignerFor<8> for T
Source§impl<T> AlignerFor<8192> for T
impl<T> AlignerFor<8192> for T
Source§type Aligner = AlignTo8192<T>
type Aligner = AlignTo8192<T>
AlignTo*
type which aligns Self
to ALIGNMENT
.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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
Source§impl<S> ROExtAcc for S
impl<S> ROExtAcc for S
Source§fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F
fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F
offset
. Read moreSource§fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F
fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F
offset
. Read moreSource§fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F
fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F
offset
. Read moreSource§fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F
fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F
offset
. Read moreSource§impl<S> ROExtOps<Aligned> for S
impl<S> ROExtOps<Aligned> for S
Source§fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F
offset
) with value
,
returning the previous value of the field. Read moreSource§fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> Fwhere
F: Copy,
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> Fwhere
F: Copy,
Source§impl<S> ROExtOps<Unaligned> for S
impl<S> ROExtOps<Unaligned> for S
Source§fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F
fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F
offset
) with value
,
returning the previous value of the field. Read moreSource§fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> Fwhere
F: Copy,
fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> Fwhere
F: Copy,
Source§impl<T> SelfOps for Twhere
T: ?Sized,
impl<T> SelfOps for Twhere
T: ?Sized,
Source§fn piped<F, U>(self, f: F) -> U
fn piped<F, U>(self, f: F) -> U
Source§fn piped_ref<'a, F, U>(&'a self, f: F) -> Uwhere
F: FnOnce(&'a Self) -> U,
fn piped_ref<'a, F, U>(&'a self, f: F) -> Uwhere
F: FnOnce(&'a Self) -> U,
piped
except that the function takes &Self
Useful for functions that take &Self
instead of Self
. Read moreSource§fn piped_mut<'a, F, U>(&'a mut self, f: F) -> Uwhere
F: FnOnce(&'a mut Self) -> U,
fn piped_mut<'a, F, U>(&'a mut self, f: F) -> Uwhere
F: FnOnce(&'a mut Self) -> U,
piped
, except that the function takes &mut Self
.
Useful for functions that take &mut Self
instead of Self
.Source§fn mutated<F>(self, f: F) -> Self
fn mutated<F>(self, f: F) -> Self
Source§fn observe<F>(self, f: F) -> Self
fn observe<F>(self, f: F) -> Self
Source§fn as_ref_<T>(&self) -> &T
fn as_ref_<T>(&self) -> &T
AsRef
,
using the turbofish .as_ref_::<_>()
syntax. Read more