[−][src]Struct async_global_executor::Task
A spawned future.
Tasks are also futures themselves and yield the output of the spawned future.
When a task is dropped, its gets canceled and won't be polled again. To cancel a task a bit
more gracefully and wait until it stops running, use the cancel()
method.
Tasks that panic get immediately canceled. Awaiting a canceled task also causes a panic.
If a task panics, the panic will be thrown into the Executor::run()
or
LocalExecutor::run()
invocation that polled it.
Examples
use async_executor::Executor; use futures_lite::future; use std::thread; let ex = Executor::new(); // Spawn a future onto the executor. let task = ex.spawn(async { println!("Hello from a task!"); 1 + 2 }); // Run an executor thread. thread::spawn(move || future::block_on(ex.run(future::pending::<()>()))); // Wait for the result. assert_eq!(future::block_on(task), 3);
Implementations
impl<T> Task<T>
[src]
pub fn detach(self)
[src]
Detaches the task to let it keep running in the background.
Examples
use async_executor::Executor; use async_io::Timer; use std::time::Duration; let ex = Executor::new(); // Spawn a deamon future. ex.spawn(async { loop { println!("I'm a daemon task looping forever."); Timer::after(Duration::from_secs(1)).await; } }) .detach();
pub async fn cancel(self) -> Option<T>
[src]
Cancels the task and waits for it to stop running.
Returns the task's output if it was completed just before it got canceled, or None
if
it didn't complete.
While it's possible to simply drop the Task
to cancel it, this is a cleaner way of
canceling because it also waits for the task to stop running.
Examples
use async_executor::Executor; use async_io::Timer; use futures_lite::future; use std::thread; use std::time::Duration; let ex = Executor::new(); // Spawn a deamon future. let task = ex.spawn(async { loop { println!("Even though I'm in an infinite loop, you can still cancel me!"); Timer::after(Duration::from_secs(1)).await; } }); // Run an executor thread. thread::spawn(move || future::block_on(ex.run(future::pending::<()>()))); future::block_on(async { Timer::after(Duration::from_secs(3)).await; task.cancel().await; });
Trait Implementations
impl<T> Debug for Task<T> where
T: Debug,
[src]
T: Debug,
impl<T> Drop for Task<T>
[src]
impl<T> Future for Task<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Task<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Task<T> where
T: Send,
T: Send,
impl<T> Sync for Task<T>
impl<T> Unpin for Task<T>
impl<T> UnwindSafe for Task<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<F> FutureExt for F where
F: Future + ?Sized,
[src]
F: Future + ?Sized,
fn or<F>(self, other: F) -> Or<Self, F> where
F: Future<Output = Self::Output>,
[src]
F: Future<Output = Self::Output>,
fn boxed(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'static + Send>> where
Self: Send + 'static,
[src]
Self: Send + 'static,
fn boxed_local(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'static>> where
Self: 'static,
[src]
Self: 'static,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<F, T, E> TryFuture for F where
F: Future<Output = Result<T, E>> + ?Sized,
[src]
F: Future<Output = Result<T, E>> + ?Sized,
type Ok = T
The type of successful values yielded by this future
type Error = E
The type of failures yielded by this future
fn try_poll(
self: Pin<&mut F>,
cx: &mut Context<'_>
) -> Poll<<F as Future>::Output>
[src]
self: Pin<&mut F>,
cx: &mut Context<'_>
) -> Poll<<F as Future>::Output>
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,