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