pub struct Sender<T, const N: usize> { /* private fields */ }
Expand description

The sender of the channel.

This is a the main channel component, as this is stored in static memory, The Sender is the owner of the memory. You can use it from multiple locations by storing it in a static variable.

static_mem doesn’t have something like channel function, Because, we don’t have heap to store the Sender and give you an Arc to clone it. So, the user has to create the receiver from the sender manually.

Use new_receiver to create a receiver. It will start from the same point as the sender.

Broadcast messages sent by using the send method.

Examples

use blinkcast::static_mem::Sender;

let sender = Sender::<i32, 4>::new();
let mut receiver = sender.new_receiver();

sender.send(1);
sender.send(2);

assert_eq!(receiver.recv(), Some(1));
assert_eq!(receiver.recv(), Some(2));
assert_eq!(receiver.recv(), None);

Implementations§

source§

impl<T: Clone, const N: usize> Sender<T, N>

source

pub fn send(&self, value: T)

Sends a message to the channel. If the channel is full, the oldest message will be overwritten. So the receiver must be quick or it will lose the old data.

source

pub const fn new() -> Self

Creates a new channel with a buffer of size N.

source

pub fn new_receiver(&self) -> Receiver<'_, T, N>

Creates a new receiver that starts from the same point as the sender.

Examples
use blinkcast::static_mem::Sender;

let sender = Sender::<i32, 4>::new();

sender.send(1);

let mut receiver = sender.new_receiver();
assert_eq!(receiver.recv(), None);

sender.send(2);
assert_eq!(receiver.recv(), Some(2));
assert_eq!(receiver.recv(), None);

Trait Implementations§

source§

impl<T: Clone, const N: usize> Default for Sender<T, N>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: Clone + Send, const N: usize> Send for Sender<T, N>

source§

impl<T: Clone + Send, const N: usize> Sync for Sender<T, N>

Auto Trait Implementations§

§

impl<T, const N: usize> !RefUnwindSafe for Sender<T, N>

§

impl<T, const N: usize> Unpin for Sender<T, N>
where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for Sender<T, N>
where 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.