Trait nakadion::HandlerFactory [] [src]

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

Associated Types

Required Methods

Implementors