Enum timely::Configuration [] [src]

pub enum Configuration {
    Thread,
    Process(usize),
    Cluster(usizeusizeVec<String>, bool),
}

Possible configurations for the communication infrastructure.

Variants

Use one thread.

Use one process with an indicated number of threads.

Expect multiple processes indicated by (threads, process, host_list, report).

Methods

impl Configuration
[src]

[src]

Constructs a new configuration by parsing supplied text arguments.

Most commonly, this uses std::env::Args() as the supplied iterator.

Trait Implementations

Auto Trait Implementations

impl Send for Configuration

impl Sync for Configuration