actionqueue-runtime 0.1.2

Async dispatch loop, embedded API, and runtime configuration for the ActionQueue task queue engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_code)]
//! ActionQueue runtime: dispatch loop, configuration, and embedded API.
//!
//! This crate composes the storage, engine, and executor primitives into a
//! cohesive runtime that drives the full task lifecycle from submission through
//! scheduling, leasing, execution, and completion.

pub mod config;
pub mod dispatch;
pub mod engine;
pub mod worker;