Trait robin::connection::LookupJob [] [src]

pub trait LookupJob {
    fn lookup(&self, name: &JobName) -> Option<Box<Job + Send>>;
}

Trait that maps a String given to Robin by Redis to an actual job type.

Required Methods

Perform the lookup.

Implementors