pub trait Scheduler: Send + Sync {
// Required methods
fn schedule(&self, job: Job) -> Result<()>;
fn stop<'life0, 'async_trait>(
&'life0 self,
await_termination: bool,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Scheduler defines a set of API to schedule Jobs