pub struct Sender<T> { /* private fields */ }
Expand description
The sender of the channel
.
This is a cloneable sender, so you can have multiple senders that will send to the same channel.
Broadcast messages sent by using the send
method.
Examples
use blinkcast::alloc::channel;
let (sender, mut receiver) = channel::<i32>(4);
sender.send(1);
let sender2 = sender.clone();
sender2.send(2);
assert_eq!(receiver.recv(), Some(1));
assert_eq!(receiver.recv(), Some(2));
assert_eq!(receiver.recv(), None);
Or using the new
method:
use blinkcast::alloc::Sender;
let sender = Sender::<i32>::new(4);
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> Sender<T>
impl<T: Clone> Sender<T>
sourcepub fn send(&self, value: T)
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.
sourcepub fn new_receiver(&self) -> Receiver<T>
pub fn new_receiver(&self) -> Receiver<T>
Creates a new receiver that starts from the same point as the sender.
Examples
use blinkcast::alloc::Sender;
let sender = Sender::<i32>::new(4);
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§
impl<T: Clone + Send> Send for Sender<T>
impl<T: Clone + Send> Sync for Sender<T>
Auto Trait Implementations§
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