docs.rs failed to build bmux_server-0.0.1-alpha.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
bmux_server-0.0.1-alpha.0
bmux_server
Core server host for bmux IPC and plugin services.
Overview
This crate hosts the bmux server event loop and core IPC request handling. It owns generic server plumbing such as endpoint binding, protocol negotiation, event delivery, service dispatch, and shutdown coordination. Product-domain behavior is implemented by plugins or neutral state crates and is reached through generic request/service paths.
Responsibilities
- Bind a local IPC endpoint and accept client connections.
- Negotiate protocol contracts with clients.
- Handle core control requests such as ping, status, event subscription, and server shutdown.
- Route generic service invocations to registered plugin/service handlers.
- Broadcast wire events to polling or server-push clients.
- Provide host-side runtime plumbing for recording, performance, and plugin state replayers without embedding domain convenience APIs.
Core types
BmuxServer: Server handle with explicit-endpoint and config-derived constructors.ServiceRoute: Capability/interface/operation route for service dispatch.ServiceInvokeContext: Per-call context available to service handlers.ServiceInvokeOutput: Encoded service response payload plus metadata.
Usage
use IpcEndpoint;
use BmuxServer;
# async
Callers that already have resolved bmux paths can use
BmuxServer::from_config_paths to derive the platform-specific endpoint from
configuration.