Enum timely::Configuration
[−]
[src]
pub enum Configuration {
Thread,
Process(usize),
Cluster(usize, usize, Vec<String>, bool),
}Possible configurations for the communication infrastructure.
Variants
ThreadUse one thread.
Process(usize)Use one process with an indicated number of threads.
Cluster(usize, usize, Vec<String>, bool)Expect multiple processes indicated by (threads, process, host_list, report).