IncomingChannelFactory

Trait IncomingChannelFactory 

Source
pub trait IncomingChannelFactory: Send + Sync {
    type Stream: Send + Sync + 'static;
}
Expand description

Similar to ChannelFactory, but for building channels from incoming streams.

Required Associated Types§

Source

type Stream: Send + Sync + 'static

The type of byte stream that’s required to build channels for incoming connections.

Implementors§