resc 0.3.1

A Redis based task orchestrator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


/// result of applying a rule to a task
#[derive(Debug)]
pub struct RuleResult {

    /// the task to generate
    pub task: String,

    /// the queue where to write the task
    pub queue: String,

    /// the sorted set where to check the task
    /// isn't yet in the queue
    pub set: Option<String>,

}