pub fn generic_state_broadcast_channel<MutexType, T>(
) -> (GenericStateSender<MutexType, T>, GenericStateReceiver<MutexType, T>)where
    MutexType: RawMutex,
    T: Clone + Send,
Expand description

Creates a new state broadcast channel which can be used to exchange values of type T between concurrent tasks. The ends of the Channel are represented through the returned Sender and Receiver.

As soon es either the senders or receivers is closed, the channel itself will be closed.