lenso-platform-runtime 0.1.2

Runtime function primitives for the Lenso backend framework.
Documentation
pub mod flows;
pub mod functions;
pub mod migrations;
pub mod queues;
pub mod registry;
pub mod retries;
pub mod schedules;
pub mod store;
pub mod triggers;

pub use flows::{FlowDefinition, FlowRun};
pub use functions::{
    ClaimedFunctionRun, EnqueueFunctionRequest, FunctionDefinition, FunctionHandler,
    FunctionHandlerObservability, FunctionRegistry, FunctionRunStatus, RuntimeClient,
    RuntimeFunction, RuntimeWorker,
};
pub use migrations::RUNTIME_MIGRATIONS;
pub use queues::{Queue, QueueName};
pub use registry::RuntimeDescriptor;
pub use retries::RetryPolicy;
pub use schedules::{RuntimeScheduler, ScheduledFunctionDefinition};
pub use store::RuntimeStore;
pub use triggers::{TriggerDefinition, TriggerSource};