[][src]Struct solana_core::rpc_subscriptions::RpcSubscriptions

pub struct RpcSubscriptions { /* fields omitted */ }

Methods

impl RpcSubscriptions[src]

pub fn new(exit: &Arc<AtomicBool>) -> Self[src]

pub fn add_account_subscription(
    &self,
    pubkey: &Pubkey,
    confirmations: Option<Confirmations>,
    sub_id: &SubscriptionId,
    sink: &Sink<RpcAccount>
)
[src]

pub fn remove_account_subscription(&self, id: &SubscriptionId) -> bool[src]

pub fn add_program_subscription(
    &self,
    program_id: &Pubkey,
    confirmations: Option<Confirmations>,
    sub_id: &SubscriptionId,
    sink: &Sink<RpcKeyedAccount>
)
[src]

pub fn remove_program_subscription(&self, id: &SubscriptionId) -> bool[src]

pub fn add_signature_subscription(
    &self,
    signature: &Signature,
    confirmations: Option<Confirmations>,
    sub_id: &SubscriptionId,
    sink: &Sink<Result<()>>
)
[src]

pub fn remove_signature_subscription(&self, id: &SubscriptionId) -> bool[src]

pub fn notify_subscribers(
    &self,
    current_slot: Slot,
    bank_forks: &Arc<RwLock<BankForks>>
)
[src]

Notify subscribers of changes to any accounts or new signatures since the bank's last checkpoint.

pub fn add_slot_subscription(
    &self,
    sub_id: &SubscriptionId,
    sink: &Sink<SlotInfo>
)
[src]

pub fn remove_slot_subscription(&self, id: &SubscriptionId) -> bool[src]

pub fn notify_slot(&self, slot: Slot, parent: Slot, root: Slot)[src]

Trait Implementations

impl Default for RpcSubscriptions[src]

impl Drop for RpcSubscriptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,