Embassy
embassy-sync

Crates

git

Versions

default

Flavors

Struct embassy_sync::pubsub::publisher::Pub

source ·
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>

source

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.

source

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

source

pub fn try_publish(&self, message: T) -> Result<(), T>

Publish a message if there is space in the message queue

source

pub fn space(&self) -> usize

The amount of messages that can still be published without having to wait or without having to lag the subscribers

Note: In the time between checking this and a publish action, other publishers may have had time to publish something. So checking doesn’t give any guarantees.

Trait Implementations§

source§

impl<'a, PSB: PubSubBehavior<T> + ?Sized, T: Clone> Drop for Pub<'a, PSB, T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

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>
where PSB: RefUnwindSafe + ?Sized, T: RefUnwindSafe,

§

impl<'a, PSB, T> Send for Pub<'a, PSB, T>
where PSB: Sync + ?Sized, T: Send,

§

impl<'a, PSB, T> Sync for Pub<'a, PSB, T>
where PSB: Sync + ?Sized, T: Sync,

§

impl<'a, PSB, T> Unpin for Pub<'a, PSB, T>
where T: Unpin, PSB: ?Sized,

§

impl<'a, PSB, T> UnwindSafe for Pub<'a, PSB, T>
where PSB: RefUnwindSafe + ?Sized, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.