runtara-workflow-stdlib 1.0.24

Standard library for runtara workflow binaries - combines agents and runtime
Documentation

Runtara Workflow Standard Library

Unified library for workflow binaries. Combines agents and runtime into a single crate that workflows link against.

This library integrates with runtara-core via runtara-sdk for:

  • Instance registration and lifecycle management
  • Checkpointing for crash recovery
  • Signal handling (pause, cancel, resume)
  • Heartbeat/tick for liveness monitoring

Usage in generated workflow code:

extern crate runtara_workflow_stdlib;
use runtara_workflow_stdlib::prelude::*;
use runtara_workflow_stdlib::agents::*;