Trait nakadion::HandlerFactory [] [src]

pub trait HandlerFactory {
    type Handler: BatchHandler + Send + 'static;
    fn create_handler(&self, partition: &PartitionId) -> Self::Handler;
}

Associated Types

Required Methods

Implementors