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,
queue_size_warning: i64,
) -> NotificationReceiver<Payload>
pub fn subscribe( &self, queue_size_warning: i64, ) -> 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 moreAuto Trait Implementations§
impl<Payload, TK> Freeze for NotificationStream<Payload, TK>
impl<Payload, TK> !RefUnwindSafe for NotificationStream<Payload, TK>
impl<Payload, TK> Send for NotificationStream<Payload, TK>
impl<Payload, TK> Sync for NotificationStream<Payload, TK>
impl<Payload, TK> Unpin for NotificationStream<Payload, TK>where
TK: Unpin,
impl<Payload, TK> !UnwindSafe for NotificationStream<Payload, TK>
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)