Struct mioco::Handler [] [src]

pub struct Handler { /* fields omitted */ }

Mioco event loop Handler

Registered in mio_orig::EventLoop and implementing mio_orig::Handler. This struct is quite internal so you should not have to worry about it.

Methods

impl Handler
[src]

Create a Handler.

Data shared between Handler and Coroutines belonging to it

Trait Implementations

impl Handler for Handler
[src]

Invoked at the end of an event loop tick.

Invoked when the socket represented by token is ready to be operated on. events indicates the specific operations that are ready to be performed. Read more

Invoked when a message has been received via the event loop's channel.

Invoked when a timeout has completed.

Invoked when EventLoop has been interrupted by a signal interrupt.