Type Alias MultiMmapLog

Source
pub type MultiMmapLog<ItemType, const MAX_STREAMS: usize, const INSTRUMENTS: usize = {Instruments::LogsWithMetrics.into()}> = Multi<ItemType, ChannelMultiMmapLog<ItemType, MAX_STREAMS>, INSTRUMENTS, &'static ItemType>;

Aliased Type§

pub struct MultiMmapLog<ItemType, const MAX_STREAMS: usize, const INSTRUMENTS: usize = {Instruments::LogsWithMetrics.into()}> {
    pub multi_name: String,
    pub channel: Arc<MmapLog<'static, ItemType, MAX_STREAMS>>,
    pub executor_infos: RwLock<IndexMap<String, ExecutorInfo>>,
    /* private fields */
}

Fields§

§multi_name: String§channel: Arc<MmapLog<'static, ItemType, MAX_STREAMS>>§executor_infos: RwLock<IndexMap<String, ExecutorInfo>>