stasis-rs 0.1.0

Durable AI orchestration framework with runtime jobs, lineage, and memory integration
Documentation
1
2
3
4
5
6
use crate::domain::runtime::delivery_endpoint::DeliveryEndpoint;
use crate::domain::runtime::outbox::OutboxEvent;

pub trait EndpointRoutingPolicy: Send + Sync {
    fn should_route(&self, endpoint: &DeliveryEndpoint, event: &OutboxEvent) -> bool;
}