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

pub struct Handle {
    // some fields omitted
}

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

Methods

impl Handle
[src]

fn remote(&self) -> &Remote

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

fn spawn<F>(&self, f: F) where F: Future<Item=(), Error=()> + 'static

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

Trait Implementations

impl Clone for Handle
[src]

fn clone(&self) -> Handle

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more