SharedChannel

Type Alias SharedChannel 

Source
type SharedChannel<T> = Arc<Channel<T>>;
Expand description

Shared channel.

One or multiple senders and a single receiver will share a channel.

Aliased Typeยง

struct SharedChannel<T> { /* private fields */ }