Trait pipeliner::Pipeline [] [src]

pub trait Pipeline<It, In> where
    It: Iterator<Item = In> + Send + 'static,
    In: Send + 'static, 
{ fn with_threads(self, num_threads: usize) -> PipelineBuilder<It, In>; }

Things which implement this can be used with the Pipeliner library.

Required Methods

Returns an PipelineBuilder that will execute using this many threads, and 0 buffering.

Implementors