Struct tokio::reactor::Handle [] [src]

pub struct Handle { /* fields omitted */ }

A reference to a reactor.

A Handle is used for associating I/O objects with an event loop explicitly. Typically though you won't end up using a Handle that often and will instead use the default reactor for the execution context.

By default, most components bind lazily to reactors. To get this behavior when manually passing a Handle, use default().

Methods

impl Handle
[src]

[src]

Returns a handle to the current reactor.

Trait Implementations

impl Default for Handle
[src]

[src]

Returns a "default" handle, i.e., a handle that lazily binds to a reactor.

impl Unpark for Handle
[src]

[src]

Unblock a thread that is blocked by the associated Park handle. Read more

impl Debug for Handle
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Handle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more