Struct mpc_engine::broadcast::BroadcastRelay
source · pub struct BroadcastRelay { /* private fields */ }
Expand description
A broadcast relay functionality.
Accepts openings to broadcasted committed values and faithfully relays them to all parties.
Implementations§
source§impl BroadcastRelay
impl BroadcastRelay
sourcepub fn new(listen: Receiver<Message>, parties: Vec<Sender<Message>>) -> Self
pub fn new(listen: Receiver<Message>, parties: Vec<Sender<Message>>) -> Self
Create a new broadcast relay.
sourcepub fn run(&self)
pub fn run(&self)
Continuously await broadcast communication rounds.
A broadcast round starts with all parties sending commitment opening information to the broadcast relay. Once openings have been received by all parties, the relay starts distributing openings to all parties, sending every opening to every party, except the party where the opening came from.
If the receiving channel errors this must mean that all parties have shut down and dropped their copies of the sender. In this case the broadcast relay also shuts down.
Auto Trait Implementations§
impl Freeze for BroadcastRelay
impl RefUnwindSafe for BroadcastRelay
impl Send for BroadcastRelay
impl !Sync for BroadcastRelay
impl Unpin for BroadcastRelay
impl UnwindSafe for BroadcastRelay
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