rlink 0.6.16

High performance Stream Processing Framework
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod memory;
pub mod network;

pub(crate) const DEFAULT_CHANNEL_SIZE: usize = 10240;

#[derive(Copy, Clone, Debug)]
pub(crate) enum ChannelType {
    Memory = 1,
    Network = 2,
}