alkhttp 0.4.1

HTTP interface for the alk stack: serves HTTP/1.1 + HTTP/2 on standard ALPNs (with WebSocket upgrade carrying the channels protocol) and hosts the HTTP-backed call-protocol adapters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod routes;

pub use alkcall::gateway::{schema_disclosure_denial, GatewayDispatch, DEFAULT_DEADLINE};
pub use routes::CallRequest;

/// The maximum number of operations accepted in a single batch,
/// enforced identically by the HTTP `POST /batch` endpoint, the
/// `to_openapi` gateway-spec projection, and the MCP `batch` tool
/// (review-002 PRJ-22). One shared constant so the surfaces cannot
/// drift.
pub const MAX_BATCH_OPERATIONS: usize = 100;