Module ex_futures::unsync::pubsub [] [src]

Future-aware single-threaded publish-subscribe channel

Structs

SendError
UnboundedReceiver

The receiving end of an unbounded channel. This is created by the unbounded function.

UnboundedSender

The transmission end of an unbounded channel. This is created by the unbounded function.

Functions

unbounded

Returns unbounded sender and receiver. This function is like another hand of futures::unsync::mpsc::unbounded but every item being treated need to implement Clone trait.