oxana 2.0.0-rc.3

A simple & fast job queue system.
Documentation
1
2
3
4
5
6
7
use tokio::sync::OwnedSemaphorePermit;

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