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: usize,
) -> NotificationReceiver<Payload>
pub fn subscribe( &self, queue_size_warning: usize, ) -> 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§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
Source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
Source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moreSource§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
Source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.