Struct tokio::sync::watch::Sender [−][src]
pub struct Sender<T> { /* fields omitted */ }
Implementations
impl<T> Sender<T>
[src]
impl<T> Sender<T>
[src]pub fn broadcast(&self, value: T) -> Result<(), SendError<T>>
[src]
Broadcasts a new value via the channel, notifying all receivers.
pub async fn closed(&mut self)
[src]
Completes when all receivers have dropped.
This allows the producer to get notified when interest in the produced values is canceled and immediately stop doing work.
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for Sender<T>
impl<T> Send for Sender<T> where
T: Send + Sync,
T: Send + Sync,
impl<T> Sync for Sender<T> where
T: Send + Sync,
T: Send + Sync,