pub struct Pub<'a, PSB: PubSubBehavior<T> + ?Sized, T: Clone> { /* private fields */ }
Expand description
A publisher to a channel
Implementations§
Source§impl<'a, PSB: PubSubBehavior<T> + ?Sized, T: Clone> Pub<'a, PSB, T>
impl<'a, PSB: PubSubBehavior<T> + ?Sized, T: Clone> Pub<'a, PSB, T>
Sourcepub fn publish_immediate(&self, message: T)
pub fn publish_immediate(&self, message: T)
Publish a message right now even when the queue is full. This may cause a subscriber to miss an older message.
Sourcepub fn publish<'s>(&'s self, message: T) -> PublisherWaitFuture<'s, 'a, PSB, T> ⓘ
pub fn publish<'s>(&'s self, message: T) -> PublisherWaitFuture<'s, 'a, PSB, T> ⓘ
Publish a message. But if the message queue is full, wait for all subscribers to have read the last message
Sourcepub fn try_publish(&self, message: T) -> Result<(), T>
pub fn try_publish(&self, message: T) -> Result<(), T>
Publish a message if there is space in the message queue
Sourcepub fn free_capacity(&self) -> usize
pub fn free_capacity(&self) -> usize
Returns the free capacity of the channel.
This is equivalent to capacity() - len()
Trait Implementations§
Auto Trait Implementations§
impl<'a, PSB, T> Freeze for Pub<'a, PSB, T>where
PSB: ?Sized,
impl<'a, PSB, T> RefUnwindSafe for Pub<'a, PSB, T>
impl<'a, PSB, T> Send for Pub<'a, PSB, T>
impl<'a, PSB, T> Sync for Pub<'a, PSB, T>
impl<'a, PSB, T> Unpin for Pub<'a, PSB, T>
impl<'a, PSB, T> UnwindSafe for Pub<'a, PSB, T>
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