Trait thrift::transport::TReadTransportFactory
source · pub trait TReadTransportFactory {
// Required method
fn create(
&self,
channel: Box<dyn Read + Send>,
) -> Box<dyn TReadTransport + Send>;
}
Expand description
Helper type used by a server to create TReadTransport
instances for
accepted client connections.