oxana 2.1.2

A simple & fast job queue system.
Documentation
1
2
3
4
5
6
7
use crate::semaphores_map::QueuePermit;

#[derive(Debug)]
pub struct WorkerJob {
    pub job_id: String,
    pub permit: QueuePermit,
}