pub trait TransportPoolSender: GhostChannelSender<TransportPool> {
    fn push_sub_transport(
        &self,
        sub_listener: GhostSender<TransportListener>,
        sub_event: TransportEventReceiver
    ) -> TransportPoolFuture<()> { ... } }
Expand description

Additional control functions for a transport pool

Provided methods

Push a new sub-transport listener into the pool

Implementors