pub trait BaseClientConnection {
    type BlockingClientConnection: BlockingClientConnection;
    type NonblockingClientConnection: NonblockingClientConnection;

    // Required methods
    fn new_blocking_connection(
        &self,
        addr: SocketAddr,
        stats: Arc<ConnectionCacheStats>
    ) -> Arc<Self::BlockingClientConnection>;
    fn new_nonblocking_connection(
        &self,
        addr: SocketAddr,
        stats: Arc<ConnectionCacheStats>
    ) -> Arc<Self::NonblockingClientConnection>;
}

Required Associated Types§

Required Methods§

Implementors§