extern crate dbq; extern crate postgres; extern crate serde_json; use std::error::Error; use std::result::Result; use std::thread; use std::time::Duration; // A simple handler that prints "Hello!" for any job it runs #[derive(Clone)] struct HelloHandler {} fn main() -> Result<(), Box> { let db_conn_params = "postgres://postgres:password@localhost/dbq"; let conn = postgres::Connection::connect(db_conn_params, postgres::TlsMode::None)?; // Schema config allows for changing the database schema and table names // Defaults are no schema (default is used) and tables are prefixed with "dbq_" let schema_config = dbq::SchemaConfig::default(); // Run the migrations on start. Migrations are idempotent and should be run // on startup dbq::run_migrations(&schema_config, &conn, Some(646_271)).unwrap(); let queue = dbq::Queue::new(schema_config, "example_simple".to_string()); // Enqueue a job queue.enqueue("job_a", serde_json::Value::Null, 3, &conn)?; // Start a worker pool let workers_config = dbq::WorkerPoolConfig::new(queue, db_conn_params, HelloHandler {})?; let workers = dbq::WorkerPool::start(workers_config); // Give a worker time to find and start the job thread::sleep(Duration::new(1, 0)); // Shutdown the worker pool waiting for all currently executing jobs to finish workers.join(); Ok(()) } impl dbq::Handler for HelloHandler { type Error = std::io::Error; fn handle(&self, _ctx: dbq::JobContext) -> Result<(), Self::Error> { println!("Hello!"); Ok(()) } }