meerkat-runtime 0.6.31

v9 runtime control-plane for Meerkat agent lifecycle
Documentation
// @generated — protocol helpers for `auth_lease_lifecycle_publication`
// Composition: auth_lease_bundle, Producer: auth_machine, Effect: EmitLifecycleEvent
// Closure policy: AckRequired
// Liveness: informative publication: AuthMachine's own transitions carry the authoritative phase fact; runtime owner refreshes the lease-state projection under task-scheduling fairness

use crate::auth_machine::dsl::{AuthLifecyclePhase, AuthMachineEffect};

#[derive(Debug, Clone)]
pub struct AuthLeaseLifecyclePublicationObligation {
    pub new_state: AuthLifecyclePhase,
}

pub fn extract_obligations(
    effects: &[AuthMachineEffect],
) -> Vec<AuthLeaseLifecyclePublicationObligation> {
    effects
        .iter()
        .filter_map(|effect| match effect {
            AuthMachineEffect::EmitLifecycleEvent { new_state } => {
                Some(AuthLeaseLifecyclePublicationObligation {
                    new_state: new_state.clone(),
                })
            }
            _ => None,
        })
        .collect()
}