[][src]Module tokio_executor::park

Abstraction over blocking and unblocking the current thread.

Provides an abstraction over blocking the current thread. This is similar to the park / unpark constructs provided by std but made generic. This allows embedding custom functionality to perform when the thread is blocked.

A blocked Park instance is unblocked by calling unpark on its Unpark handle.

The ParkThread struct implements Park using thread::park to put the thread to sleep. The Tokio reactor also implements park, but uses mio::Poll to block the thread instead.

The Park trait is composable. A timer implementation might decorate a Park implementation by checking if any timeouts have elapsed after the inner Park implementation unblocks.

Model

Conceptually, each Park instance has an associated token, which is initially not present:

Some things to note:

Structs

ParkError

Error returned by ParkThread

ParkThread

Blocks the current thread using a condition variable.

UnparkThread

Unblocks a thread that was blocked by ParkThread.

Traits

Park

Block the current thread.

Unpark

Unblock a thread blocked by the associated Park instance.