Skip to main content

Mountain/RPC/
EchoAction.rs

1#![allow(non_snake_case)]
2
3//! Cocoon → Mountain submission gate. The `EchoActionServer` wraps every
4//! inbound `MountainService` gRPC call in an Echo work-stealing scheduler
5//! task tagged with a per-method priority lane (read/write file → High,
6//! search/git → Low, default → Normal).
7//!
8//! Without this gate a `$activateByEvent("*")` fan-out (28+ `ReadFile` +
9//! 28+ `Stat` + 28+ `Configuration.Inspect`) starves any interactive Wind
10//! IPC arriving during the burst.
11
12pub mod EchoActionServer;
13pub mod ExtensionHostRegistry;
14pub mod ExtensionRouter;
15pub mod ResolveMethodPriority;