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
//! Job queue core: models, repository, retry logic, and execution runner.
//!
//! This module contains both stable and unstable sub-modules.
//! See [`STABILITY.md`](https://github.com/BlockForge-Dev/azums/blob/main/STABILITY.md)
//! for the full API stability policy.
/// Durable execution-attempt records and repository operations.
/// Producer-side payload and enqueue-rate admission controls.
/// Canonical operational error codes and remediation guidance.
/// Audit records for producer admission decisions.
/// Compatibility re-exports for core job models.
/// PostgreSQL queue execution policies.
/// Durable audit records for worker policy decisions.
/// PostgreSQL job persistence and lifecycle mutations.
/// Retry configuration, failure classification, and backoff calculations.
/// Repository-oriented job completion and failure coordinator.
/// PostgreSQL durable event stream repository.
pub use AttemptsRepo;
pub use ;
pub use ;
pub use ;
pub use JobsRepo;
pub use StreamRepo;
// ── Unstable modules ──
// These modules may change in minor versions before 1.0.
/// ⚠️ **Unstable API** — This module's interface may change in minor versions before 1.0.
///
/// Job execution timeline reconstruction for audit and debugging.
/// ⚠️ **Unstable API** — This module's interface may change in minor versions before 1.0.
///
/// Debug view for inspecting job state, attempts, and policy decisions.
/// ⚠️ **Unstable API** — This module's interface may change in minor versions before 1.0.
///
/// Maintenance operations: archival, pruning, and retention management.
pub use ;
/// ⚠️ **Unstable API** — This module's interface may change in minor versions before 1.0.
///
/// Queue-level metrics aggregation.
pub use ;