Struct TaskGroup

Source
pub struct TaskGroup<S: Spawn, C: Deref<Target = State>> { /* private fields */ }
Expand description

A group of potentially related tasks. Tasks spawned by this struct can be waited on or signaled to shut down.

Implementations§

Source§

impl<S: Spawn> TaskGroup<S, Arc<State>>

Source

pub fn new(spawner: S) -> Self

Create a new task group using the provided spawner

Source§

impl<S: Spawn> TaskGroup<S, &'static State>

Source

pub fn with_static(spawner: S, state: &'static State) -> Self

Create a new task group using the provided spawner and state

Source§

impl<S: Spawn, C: 'static + Deref<Target = State> + Clone + Send> TaskGroup<S, C>

Source

pub async fn shutdown(&self)

Signal a shutdown to all tasks in this group and wait for shutdown to finish.

Source

pub async fn done(&self)

Wait for all tasks in this group to finish without explicitly sending a shutdown signal.

Source

pub fn spawn(&self, future: impl Future<Output = ()> + Send + 'static)

Spawn a task as part of this task group

Source

pub fn spawn_with_shutdown<F>(&self, f: impl FnOnce(ShutdownSignal<C>) -> F)
where F: Future<Output = ()> + Send + 'static,

Auto Trait Implementations§

§

impl<S, C> Freeze for TaskGroup<S, C>
where S: Freeze, C: Freeze,

§

impl<S, C> RefUnwindSafe for TaskGroup<S, C>

§

impl<S, C> Send for TaskGroup<S, C>
where S: Send, C: Send,

§

impl<S, C> Sync for TaskGroup<S, C>
where S: Sync, C: Sync,

§

impl<S, C> Unpin for TaskGroup<S, C>
where S: Unpin, C: Unpin,

§

impl<S, C> UnwindSafe for TaskGroup<S, C>
where S: UnwindSafe, C: 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<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.