[][src]Struct xaynet_server::state_machine::events::EventPublisher

pub struct EventPublisher { /* fields omitted */ }

A convenience type to emit any coordinator event.

Implementations

impl EventPublisher[src]

pub fn init(
    round_id: u64,
    keys: EncryptKeyPair,
    params: RoundParameters,
    phase: PhaseName
) -> (Self, EventSubscriber)
[src]

Initialize a new event publisher with the given initial events.

pub fn set_round_id(&mut self, id: u64)[src]

Set the round ID that is attached to the events the publisher broadcasts.

pub fn broadcast_keys(&mut self, keys: EncryptKeyPair)[src]

Emit a keys event

pub fn broadcast_params(&mut self, params: RoundParameters)[src]

Emit a round parameters event

pub fn broadcast_phase(&mut self, phase: PhaseName)[src]

Emit a phase event

pub fn broadcast_model(&mut self, update: ModelUpdate)[src]

Emit a model event

pub fn broadcast_mask_length(&mut self, update: MaskLengthUpdate)[src]

Emit a mask_length event

pub fn broadcast_sum_dict(&mut self, update: DictionaryUpdate<SumDict>)[src]

Emit a sum dictionary update

pub fn broadcast_seed_dict(&mut self, update: DictionaryUpdate<SeedDict>)[src]

Emit a seed dictionary update

Trait Implementations

impl Debug for EventPublisher[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]