pub trait BaseTcpListenerHandler: Send + Sync {
    fn on_accept<'life0, 'async_trait>(
        &'life0 self,
        stream: TcpStream
    ) -> Pin<Box<dyn Future<Output = BuckyResult<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors