Type Alias UniMoveAtomic
Source pub type UniMoveAtomic<InType, const BUFFER_SIZE: usize, const MAX_STREAMS: usize = 1, const INSTRUMENTS: usize = {Instruments::LogsWithMetrics.into()}> = Uni<InType, ChannelUniMoveAtomic<InType, BUFFER_SIZE, MAX_STREAMS>, INSTRUMENTS, InType>;
pub struct UniMoveAtomic<InType, const BUFFER_SIZE: usize, const MAX_STREAMS: usize = 1, const INSTRUMENTS: usize = {Instruments::LogsWithMetrics.into()}> {
pub channel: Arc<Atomic<'static, InType, BUFFER_SIZE, MAX_STREAMS>>,
pub stream_executors: Vec<Arc<StreamExecutor<INSTRUMENTS>>>,
pub finished_executors_count: AtomicU32,
}