polyc-state-connect 2026.9.0

State plane transport adapter: capability-specific Connect clients and server-trait glue mapping the generated wire types onto the polyc-state kernel — typed outcomes, per-call admission, and the conformance surface the authenticated shell proves itself against (docs/proposals/separated-planes.md).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The durable commit feed on the wire.
//!
//! [`wire`] maps the feed contract's vocabulary onto its encoding and back,
//! [`client`] dials the surface in the kernel's vocabulary — including the
//! resumable subscription a projector tails a partition through — and
//! [`service`] serves it by delegating to a [`JournalFeed`] module. Nothing here
//! decides anything: the module owns every State decision, and the admission
//! functions own everything the transport boundary decides.
//!
//! [`JournalFeed`]: polyc_state::feed::JournalFeed

pub mod client;
pub mod service;
pub mod wire;

pub use client::{FeedClient, FeedSubscription};
pub use service::{FeedStreamTuning, FeedSvc, MAX_CONCURRENT_SUBSCRIPTIONS};