#tokio #async

task-group

manage groups of tokio tasks

4 releases

0.2.2 Mar 3, 2022
0.2.1 Sep 15, 2021
0.2.0 Apr 2, 2021
0.1.0 Mar 29, 2021

#687 in Asynchronous

Download history 336/week @ 2023-10-19 342/week @ 2023-10-26 507/week @ 2023-11-02 329/week @ 2023-11-09 252/week @ 2023-11-16 272/week @ 2023-11-23 368/week @ 2023-11-30 194/week @ 2023-12-07 350/week @ 2023-12-14 105/week @ 2023-12-21 98/week @ 2023-12-28 267/week @ 2024-01-04 286/week @ 2024-01-11 344/week @ 2024-01-18 399/week @ 2024-01-25 374/week @ 2024-02-01

1,468 downloads per month

MIT/Apache

23KB
477 lines

task-group

A small crate for managing groups of tokio tasks.


let (task_group, task_manager): (TaskGroup<Error>, TaskManager<_>) = TaskGroup::new();

task_group.clone().spawn("a task", async move {
    task_group.spawn("b task", async move {
        /* all kinds of things */
        Ok(())
    }).await.expect("spawned b");
    Ok(())
}).await.expect("spawned a");

task_manager.await.expect("everyone successful");

A TaskGroup is used to spawn a collection of tasks. The collection has two properties:

  • if any task returns an error or panicks, all tasks are terminated.
  • if the TaskManager returned by TaskGroup::new is dropped, all tasks are terminated.

A TaskManager is used to manage a collection of tasks. There are two things you can do with it:

  • TaskManager impls Future, so you can poll or await on it. It will be Ready when all tasks return Ok(()) and the associated TaskGroup is dropped (so no more tasks can be created), or when any task panicks or returns an Err(E).
  • When a TaskManager is dropped, all tasks it contains are canceled (terminated). So, if you use a combinator like tokio::time::timeout(duration, task_manager).await, all tasks will be terminated if the timeout occurs.

See examples/ and the tests in src/lib.rs for more examples.

Dependencies

~2–3MB
~46K SLoC