Struct tokio::runtime::TaskExecutor
source · [−]pub struct TaskExecutor { /* private fields */ }
Expand description
Executes futures on the runtime
All futures spawned using this executor will be submitted to the associated Runtime’s executor. This executor is usually a thread pool.
For more details, see the module level documentation.
Implementations
sourceimpl TaskExecutor
impl TaskExecutor
sourcepub fn spawn<F>(&self, future: F) where
F: Future<Item = (), Error = ()> + Send + 'static,
pub fn spawn<F>(&self, future: F) where
F: Future<Item = (), Error = ()> + Send + 'static,
Spawn a future onto the Tokio runtime.
This spawns the given future onto the runtime’s executor, usually a thread pool. The thread pool is then responsible for polling the future until it completes.
See module level documentation for more details.
Examples
use tokio::runtime::Runtime;
// Create the runtime
let mut rt = Runtime::new().unwrap();
let executor = rt.executor();
// Spawn a future onto the runtime
executor.spawn(future::lazy(|| {
println!("now running on a worker thread");
Ok(())
}));
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.
Trait Implementations
sourceimpl Clone for TaskExecutor
impl Clone for TaskExecutor
sourcefn clone(&self) -> TaskExecutor
fn clone(&self) -> TaskExecutor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TaskExecutor
impl Debug for TaskExecutor
sourceimpl Executor for TaskExecutor
impl Executor for TaskExecutor
sourceimpl<T> TypedExecutor<T> for TaskExecutor where
T: Future<Item = (), Error = ()> + Send + 'static,
impl<T> TypedExecutor<T> for TaskExecutor where
T: Future<Item = (), Error = ()> + Send + 'static,
Auto Trait Implementations
impl !RefUnwindSafe for TaskExecutor
impl Send for TaskExecutor
impl Sync for TaskExecutor
impl Unpin for TaskExecutor
impl !UnwindSafe for TaskExecutor
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