Struct tokio_core::reactor::Handle
source · [−]pub struct Handle { /* private fields */ }
Expand description
A non-sendable handle to an event loop, useful for manufacturing instances
of LoopData
.
Implementations
sourceimpl Handle
impl Handle
sourcepub fn new_tokio_handle(&self) -> &Handle
pub fn new_tokio_handle(&self) -> &Handle
Returns a reference to the new Tokio handle
sourcepub fn remote(&self) -> &Remote
pub fn remote(&self) -> &Remote
Returns a reference to the underlying remote handle to the event loop.
sourcepub fn spawn<F>(&self, f: F) where
F: Future<Item = (), Error = ()> + 'static,
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.
sourcepub fn spawn_send<F>(&self, f: F) where
F: Future<Item = (), Error = ()> + Send + 'static,
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.
sourcepub fn spawn_fn<F, R>(&self, f: F) where
F: FnOnce() -> R + 'static,
R: IntoFuture<Item = (), Error = ()> + 'static,
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.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Handle
impl !Send for Handle
impl !Sync for Handle
impl Unpin for Handle
impl !UnwindSafe for Handle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more