pub trait CronHandler {
    type EH: CronHandle + 'static;

    // Required method
    fn create(&self, spec: CronSpec) -> Result<Self::EH, AnyError>;
}

Required Associated Types§

source

type EH: CronHandle + 'static

Required Methods§

source

fn create(&self, spec: CronSpec) -> Result<Self::EH, AnyError>

Implementors§