Skip to main content

Mountain/RPC/
EchoAction.rs

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