Skip to main content

Publisher

Struct Publisher 

Source
pub struct Publisher<T: Copy> { /* private fields */ }
Expand description

The write side of a Photon SPMC channel.

There is exactly one Publisher per channel. It is Send but not Sync — only one thread may publish at a time (single-producer guarantee enforced by &mut self).

Implementations§

Source§

impl<T: Copy> Publisher<T>

Source

pub fn publish(&mut self, value: T)

Publish a single value. Zero-allocation, O(1).

Source

pub fn publish_batch(&mut self, values: &[T])

Publish a batch of values with a single cursor update.

Each slot is written atomically (seqlock), but the cursor advances only once at the end — consumers see the entire batch appear at once, and cache-line bouncing on the shared cursor is reduced to one store.

Source

pub fn published(&self) -> u64

Number of messages published so far.

Source

pub fn capacity(&self) -> u64

Ring capacity (power of two).

Trait Implementations§

Source§

impl<T: Copy + Send> Send for Publisher<T>

Auto Trait Implementations§

§

impl<T> Freeze for Publisher<T>

§

impl<T> !RefUnwindSafe for Publisher<T>

§

impl<T> Sync for Publisher<T>
where T: Send,

§

impl<T> Unpin for Publisher<T>

§

impl<T> UnsafeUnpin for Publisher<T>

§

impl<T> !UnwindSafe for Publisher<T>

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>,

Source§

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>,

Source§

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.