postgres_queue

A library for managing and executing tasks in a PostgreSQL-backed queue.

This library provides a simple way to define, enqueue, and process tasks in a concurrent and fault-tolerant manner using a PostgreSQL database as the task queue.

Features

Usage

Add this to your Cargo.toml:

toml [dependencies] postgres_queue = "0.1.0"

Example

Here's a basic example demonstrating how to use the postgres_queue crate:

```rust use postgresqueue::{TaskRegistry, TaskData, TaskError, connect, initializedatabase}; use chrono::{Utc, Duration};

[tokio::main]

async fn main() -> Result<(), Box> { let databaseurl = "postgres://user:password@localhost/dbname"; let pool = connect(databaseurl).await?; initialize_database(&pool).await?;

let mut task_registry = TaskRegistry::new();
task_registry.register_task("my_task", my_task_handler);

let task_data = serde_json::json!({ "message": "Hello, world!" });
let run_at = Utc::now() + Duration::seconds(10);
let task_id = postgres_queue::enqueue(&pool, "my_task", task_data.clone(), run_at, None).await?;

task_registry.run(&pool, 4).await?;

Ok(())

}

async fn mytaskhandler(taskid: i32, taskdata: TaskData) -> Result<(), TaskError> { println!("Task {}: {:?}", taskid, taskdata); Ok(()) } ```

License

This project is licensed under the MIT License.