hatchet-sdk 0.2.8

This is an unofficial Rust SDK for Hatchet, a distributed, fault-tolerant task queue.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod options;
mod runnable;
mod task;
mod workflow;

pub use options::{TriggerWorkflowOptions, TriggerWorkflowOptionsBuilder};
pub(crate) use runnable::ExtractRunnableOutput;
pub use runnable::Runnable;
pub(crate) use task::{ExecutableTask, TaskError};
pub use task::{Task, TaskBuilder};
pub use workflow::{Workflow, WorkflowBuilder};