Trait resque::JobService [] [src]

pub trait JobService: Send {
    fn run(&self, args: &[String]) -> Result<()>;
fn queue(&self) -> &str;
fn job_type(&self) -> &str;
fn box_clone(&self) -> Box<JobService>; }

Required Methods

Implementors