A Rust job queue library, based on SQLite so it doesn't depend on any other services.
Currently this is just a library embeddable into Rust applications, but future goals include bindings into other languages and the ability to run as a standalone server, accessible by HTTP and gRPC. This will be designed so that a product can start with the embedded version to use minimal infrastructure, and then move to the server version with minimal changes when the time comes to scale out.
```rust use effectum::{Error, Job, JobState, JobRunner, RunningJob, Queue, Worker};
pub struct JobContext { // database pool or other things here }
struct RemindMePayload { email: String, message: String, }
async fn remindmejob(job: RunningJob, context: Arc
async fn main() -> Result<(), Error> { // Create a queue let queue = Queue::new(&PathBuf::from("effectum.db")).await?;
// Define a type job for the queue. let ajob = JobRunner::builder("remindme", remindmejob).build();
let context = Arc::new(JobContext{ // database pool or other things here });
// Create a worker to run jobs. let worker = Worker::builder(&queue, context) .maxconcurrency(10) .jobs([ajob]) .build();
// Submit a job to the queue. let jobid = Job::builder("remindme") .runat(time::OffsetDateTime::nowutc() + std::time::Duration::fromsecs(3600)) .jsonpayload(&RemindMePayload { email: "me@example.com".tostring(), message: "Time to go!".tostring() })? .add_to(&queue) .await?;
// See what's happening with the job. let status = queue.getjobstatus(jobid).await?; asserteq!(status.state, JobState::Pending);
// Do other stuff...
Ok(()) } ```