[][src]Struct woddle::RunnerConfig

pub struct RunnerConfig { /* fields omitted */ }

Configuration for the woddle job runner.

Holds the database configuration and the interval at which to check for new job runs.

Database configuration defaults to host=localhost user=postgres port=5432

Check Interval defaults to 60 seconds. This means, that every 60 seconds, the system checks, if a job should be run.

Initial delay defaults to 0 seconds. This means, that the runner starts immediately

Implementations

impl RunnerConfig[src]

pub fn new(db_config: &str) -> Result<Self, Error>[src]

Creates a new RunnerConfig with the given connection String

Example: host=localhost user=postgres port=5432 password=postgres

Anything, which can be used to create a Config is valid.

pub fn check_interval(self, check_interval: Duration) -> Self[src]

Sets the interval to check for job runs to the given Duration

pub fn initial_delay(self, initial_delay: Duration) -> Self[src]

Sets the initial delay, before checking and running jobs to the given Duration

Trait Implementations

impl Clone for RunnerConfig[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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