Trait tick::ProtocolFactory [] [src]

pub trait ProtocolFactory<T: Transport> {
    type Protocol: Protocol<T>;
    fn create(&mut self, _: Transfer, _: Id) -> (Self::Protocol, Interest);
}

Associated Types

Required Methods

Implementors