aa-gateway 0.0.1-beta.1

Control plane — policy enforcement engine and agent registry for Agent Assembly
1
2
3
4
5
6
7
8
9
10
11
12
//! Gateway-side L1 push-invalidation channel (Story AAASM-2377).
//!
//! The [`InvalidationHub`] fans `PolicyInvalidated` events out to every
//! connected Assembly over the `assembly.gateway.v1.InvalidationService`
//! bidi stream, keeping each Assembly's in-process L1 cache fresh within
//! ~100 ms of a policy mutation instead of waiting for TTL expiry.

mod hub;
mod service;

pub use hub::{AssemblyId, InvalidationHub, SubscriptionHandle};
pub use service::InvalidationServiceImpl;