[][src]Struct lightspeed_scheduler::JobExecutor

pub struct JobExecutor { /* fields omitted */ }

Implementations

impl JobExecutor[src]

pub async fn add_job<'_, '_>(
    &'_ self,
    schedule: &'_ dyn TryToScheduler,
    job: Job
) -> Result<(), SchedulerError>
[src]

Adds a job to the JobExecutor.

pub async fn add_job_with_multi_schedule<'_, '_, '_>(
    &'_ self,
    schedule: &'_ [&'_ dyn TryToScheduler],
    job: Job
) -> Result<(), SchedulerError>
[src]

Adds a job to the JobExecutor.

pub async fn add_job_with_scheduler<'_, S: Into<Scheduler>>(
    &'_ self,
    schedule: S,
    job: Job
)
[src]

Adds a job to the JobExecutor.

pub async fn run<'_>(&'_ self) -> Result<JoinHandle<()>, SchedulerError>[src]

Starts the JobExecutor

pub async fn stop<'_>(&'_ self, grateful: bool) -> Result<(), SchedulerError>[src]

Stops the JobExecutor

pub fn set_sleep_between_checks(&self, sleep: Duration)[src]

Sets the sleep time between checks for pending Jobs. The default is 1 second.

Trait Implementations

impl Clone for JobExecutor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]