[][src]Struct job_scheduler::Job

pub struct Job<'a> { /* fields omitted */ }

A schedulable Job.

Methods

impl<'a> Job<'a>[src]

pub fn new<T>(schedule: Schedule, run: T) -> Job<'a> where
    T: 'a,
    T: FnMut(), 
[src]

Create a new job.

This example is not tested
// Run at second 0 of the 15th minute of the 6th, 8th, and 10th hour
// of any day in March and June that is a Friday of the year 2017.
let s: Schedule = "0 15 6,8,10 * Mar,Jun Fri 2017".into().unwrap();
Job::new(s, || println!("I have a complex schedule...") );

pub fn limit_missed_runs(&mut self, limit: usize)[src]

Set the limit for missed jobs in the case of delayed runs. Setting to 0 means unlimited.

This example is not tested
let mut job = Job::new("0/1 * * * * *".parse().unwrap(), || {
    println!("I get executed every 1 seconds!");
});
job.limit_missed_runs(99);

pub fn last_tick(&mut self, last_tick: Option<DateTime<Utc>>)[src]

Set last tick to force re-running of missed runs.

This example is not tested
let mut job = Job::new("0/1 * * * * *".parse().unwrap(), || {
    println!("I get executed every 1 seconds!");
});
job.last_tick(Some(Utc::now()));

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Job<'a>

impl<'a> !Send for Job<'a>

impl<'a> !Sync for Job<'a>

impl<'a> Unpin for Job<'a>

impl<'a> !UnwindSafe for Job<'a>

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, U> Into<U> for T where
    U: From<T>, 
[src]

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<V, T> VZip<V> for T where
    V: MultiLane<T>,