[][src]Module mio_misc::channel

Thread safe communication channels

Structs

CrossbeamSender

The sending half of a channel crossbeam channel

Sender

The sending half of a channel.

SyncSender

The sending half of a synchronous channel.

Enums

SendError

An error returned from the Sender::send

TrySendError

An error returned from the SyncSender::try_send function.

Functions

channel

Creates a new asynchronous/unbounded channel, where the Sender::send function, in addition to sending a message, triggers a notification on Poll

crossbeam_channel_bounded

Creates a new synchronous/bounded crossbeam channel, where the Sender::send function, in addition to sending a message, triggers a notification on Poll

crossbeam_channel_unbounded

Creates a new asynchronous/unbounded crossbeam channel, where the Sender::send function, in addition to sending a message, triggers a notification on Poll

sync_channel

Creates a new synchronous channel, where the SyncSender::send function, in addition to sending a message, triggers a notification on Poll