tokio_core::reactor

Struct Handle

Source
pub struct Handle { /* private fields */ }
Expand description

A non-sendable handle to an event loop, typically passed into functions that create I/O objects to bind them to this event loop.

Implementations§

Source§

impl Handle

Source

pub fn new_tokio_handle(&self) -> &Handle

Returns a reference to the new Tokio handle

Source

pub fn remote(&self) -> &Remote

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

Source

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

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

§Panics

This method will not catch panics from polling the future f. If the future panics then it’s the responsibility of the caller to catch that panic and handle it as appropriate.

Source

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

Spawns a new future onto the threadpool

§Panics

This function panics if the spawn fails. Failure occurs if the executor is currently at capacity and is unable to spawn a new future.

Source

pub fn spawn_fn<F, R>(&self, f: F)
where F: FnOnce() -> R + 'static, R: IntoFuture<Item = (), Error = ()> + 'static,

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.

§Panics

This method will not catch panics from polling the future f. If the future panics then it’s the responsibility of the caller to catch that panic and handle it as appropriate.

Source

pub fn id(&self) -> CoreId

Return the ID of the represented Core

Trait Implementations§

Source§

impl Clone for Handle

Source§

fn clone(&self) -> Handle

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Handle

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<F> Executor<F> for Handle
where F: Future<Item = (), Error = ()> + 'static,

Source§

fn execute(&self, future: F) -> Result<(), ExecuteError<F>>

Spawns a future to run on this Executor, typically in the “background”. Read more

Auto Trait Implementations§

§

impl Freeze for Handle

§

impl !RefUnwindSafe for Handle

§

impl !Send for Handle

§

impl !Sync for Handle

§

impl Unpin for Handle

§

impl !UnwindSafe for Handle

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.