assay-workflow 0.1.1

Durable workflow engine with REST+SSE API, PostgreSQL/SQLite backends. Embeddable library or standalone server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod api;
pub mod dispatch_recovery;
pub mod engine;
pub mod health;
pub mod scheduler;
pub mod state;
pub mod store;
pub mod timers;
pub mod types;

pub use engine::Engine;
pub use store::postgres::PostgresStore;
pub use store::sqlite::SqliteStore;
pub use store::WorkflowStore;