Module mio_misc::channel[][src]

Expand description

Thread safe communication channels

Structs

The sending half of a channel crossbeam channel

The sending half of a channel.

The sending half of a synchronous channel.

Enums

An error returned from the Sender::send

An error returned from the SyncSender::try_send function.

Functions

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

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

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

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