Skip to main content

Crate taktora_connector_host

Crate taktora_connector_host 

Source
Expand description

ConnectorHost / ConnectorGateway builders, the framework’s Connector trait, and the HealthSubscription type returned by Connector::subscribe_health. Implements BB_0005 plus the Connector trait itself (REQ_0220REQ_0224).

Layering:

Re-exports§

pub use connector::Connector;
pub use gateway::ConnectorGateway;
pub use gateway::ConnectorGatewayBuilder;
pub use health_sub::HealthSubscription;
pub use host::ConnectorHost;
pub use host::ConnectorHostBuilder;

Modules§

connector
The framework’s Connector trait. REQ_0220REQ_0224.
gateway
ConnectorGateway — gateway-side composition. Parallel to crate::ConnectorHost but used by the gateway binary (or in- process tokio task) that owns the protocol stack itself (REQ_0271).
health_sub
HealthSubscription — receive-only handle over a connector’s HealthEvent stream.
host
ConnectorHost — plugin-side composition. Owns a taktora_executor::Executor and registers connector-contributed ExecutableItems with it (REQ_0270, REQ_0272).