Struct sc_utils::notification::NotificationStream
source · pub struct NotificationStream<Payload, TK: TracingKeyStr> { /* private fields */ }
Expand description
The receiving half of the notifications channel.
The NotificationStream
entity stores the Hub
so it can be
used to add more subscriptions.
Implementations§
source§impl<Payload, TK: TracingKeyStr> NotificationStream<Payload, TK>
impl<Payload, TK: TracingKeyStr> NotificationStream<Payload, TK>
sourcepub fn channel() -> (NotificationSender<Payload>, Self)
pub fn channel() -> (NotificationSender<Payload>, Self)
Creates a new pair of receiver and sender of Payload
notifications.
sourcepub fn subscribe(&self) -> NotificationReceiver<Payload>
pub fn subscribe(&self) -> NotificationReceiver<Payload>
Subscribe to a channel through which the generic payload can be received.
Trait Implementations§
source§impl<Payload: Clone, TK: Clone + TracingKeyStr> Clone for NotificationStream<Payload, TK>
impl<Payload: Clone, TK: Clone + TracingKeyStr> Clone for NotificationStream<Payload, TK>
source§fn clone(&self) -> NotificationStream<Payload, TK>
fn clone(&self) -> NotificationStream<Payload, TK>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more