Trait scheduled_executor::task_group::TaskGroup [] [src]

pub trait TaskGroup: Send + Sync + Sized + 'static {
    type TaskId: Send;
    fn get_tasks(&self) -> Vec<Self::TaskId>;
    fn execute(&self, _: Self::TaskId, _: Option<Handle>);
}

Associated Types

Required Methods

Implementors