Enum commitlog::ReadLimit [] [src]

pub enum ReadLimit {
    Bytes(usize),
    Messages(usize),
}

Batch size limitation on read.

Variants

Limit the number of bytes read from the log. This is recommended.

Limit the number of messages read from the log.