1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! Axum integration for RustQueue.
//!
//! Provides [`RqState`], an Axum extractor that gives handlers direct access
//! to the [`RustQueue`] instance through `Arc<RustQueue>` application state.
//!
//! # Quick start
//!
//! ```ignore
//! use axum::{Router, Json, routing::post};
//! use rustqueue::RustQueue;
//! use rustqueue::axum_integration::RqState;
//! use serde_json::json;
//! use std::sync::Arc;
//!
//! async fn enqueue(rq: RqState) -> Json<serde_json::Value> {
//! let id = rq.push("emails", "send-welcome", json!({}), None).await.unwrap();
//! Json(json!({"id": id.to_string()}))
//! }
//!
//! let rq = RustQueue::memory().build().unwrap();
//! let app = Router::new()
//! .route("/enqueue", post(enqueue))
//! .with_state(Arc::new(rq));
//! ```
use Deref;
use Arc;
use FromRequestParts;
use Parts;
use crateRustQueue;
/// Axum extractor that provides access to the [`RustQueue`] instance.
///
/// Expects `Arc<RustQueue>` as the router state. Use it as a handler
/// parameter and call any `RustQueue` method directly:
///
/// ```ignore
/// async fn handler(rq: RqState) -> impl IntoResponse {
/// rq.push("queue", "job", json!({}), None).await.unwrap();
/// }
/// ```
;