Struct Task

Source
pub struct Task<T>(/* private fields */);
Expand description

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 by the Ticker::tick() invocation that polled it.

§Examples

use blocking::block_on;
use multitask::Executor;
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 || {
    let (p, u) = parking::pair();
    let ticker = ex.ticker(move || u.unpark());
    loop {
        if !ticker.tick() {
            p.park();
        }
    }
});

// Wait for the result.
assert_eq!(block_on(task), 3);

Implementations§

Source§

impl<T> Task<T>

Source

pub fn detach(self)

Detaches the task to let it keep running in the background.

§Examples
use async_io::Timer;
use multitask::Executor;
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::new(Duration::from_secs(1)).await;
    }
})
.detach();
Source

pub async fn cancel(self) -> Option<T>

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_io::Timer;
use blocking::block_on;
use multitask::Executor;
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::new(Duration::from_secs(1)).await;
    }
});

// Run an executor thread.
thread::spawn(move || {
    let (p, u) = parking::pair();
    let ticker = ex.ticker(move || u.unpark());
    loop {
        if !ticker.tick() {
            p.park();
        }
    }
});

block_on(async {
    Timer::new(Duration::from_secs(3)).await;
    task.cancel().await;
});

Trait Implementations§

Source§

impl<T: Debug> Debug for Task<T>

Source§

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

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

impl<T> Drop for Task<T>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<T> Future for Task<T>

Source§

type Output = T

The type of value produced on completion.
Source§

fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output>

Attempts to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations§

§

impl<T> Freeze for Task<T>

§

impl<T> RefUnwindSafe for Task<T>
where T: RefUnwindSafe,

§

impl<T> Send for Task<T>
where T: Send,

§

impl<T> Sync for Task<T>

§

impl<T> Unpin for Task<T>

§

impl<T> UnwindSafe for Task<T>
where T: UnwindSafe,

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> 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<F> IntoFuture for F
where F: Future,

Source§

type Output = <F as Future>::Output

The output that the future will produce on completion.
Source§

type IntoFuture = F

Which kind of future are we turning this into?
Source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. 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.