Trait scheduled_executor::task_group::TaskGroupScheduler
[−]
[src]
pub trait TaskGroupScheduler {
fn schedule<T: TaskGroup>(
&self,
task_group: T,
initial: Duration,
interval: Duration
) -> Arc<T>;
}Allows the execution of a TaskGroup.
Required Methods
Implementors
impl TaskGroupScheduler for CoreExecutorimpl TaskGroupScheduler for ThreadPoolExecutor