Enum disqrust::JobStatus [] [src]

pub enum JobStatus {
    FastAck,
    AckJob,
    NAck,
}

Once a job execution finishes, change its status by performing one of this actions.

Variants

FastAck

Performs a best effort cluster wide deletion of the job.

AckJob

Acknowledges the execution of the jobs.

NAck

Puts back the job in the queue ASAP.

Trait Implementations

impl Clone for JobStatus
[src]

fn clone(&self) -> JobStatus

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more