runledger-core 0.1.0

Core contracts and types for the Runledger durable job and workflow system
Documentation
mod handler;
mod identifier_macros;
mod identifiers;
mod runtime_types;
mod status;
mod workflow_enqueue;

pub use handler::{JobHandler, JobHandlerRegistry};
pub use identifiers::{
    IdentifierValidationError, JobType, JobTypeName, StepKey, StepKeyName, WorkflowType,
    WorkflowTypeName,
};
pub use runtime_types::{
    JobContext, JobDeadLetterInfo, JobDeadLetterReason, JobFailure, JobProgress,
};
pub use status::{
    JobEventType, JobFailureKind, JobStage, JobStatus, WorkflowRunStatus, WorkflowStepStatus,
};
pub use workflow_enqueue::{
    WorkflowBuildError, WorkflowDagDependencyValidationInput, WorkflowDagStepValidationInput,
    WorkflowDagValidationError, WorkflowDependencyReleaseMode, WorkflowRunEnqueue,
    WorkflowRunEnqueueBuilder, WorkflowStepDependencySpec, WorkflowStepEnqueue,
    WorkflowStepEnqueueBuilder, WorkflowStepExecutionKind, validate_workflow_dag,
    validate_workflow_run_enqueue, validate_workflow_step_append,
};