Struct tokio_core::reactor::Handle [] [src]

pub struct Handle { /* fields omitted */ }
[]

A non-sendable handle to an event loop, useful for manufacturing instances of LoopData.

Methods

impl Handle
[src]

[]

Returns a reference to the underlying remote handle to the event loop.

[]

Spawns a new future on the event loop this handle is associated with.

[]

Spawns a closure on this event loop.

This function is a convenience wrapper around the spawn function above for running a closure wrapped in futures::lazy. It will spawn the function f provided onto the event loop, and continue to run the future returned by f on the event loop as well.

Trait Implementations

impl Clone for Handle
[src]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more