batch-processing 0.1.17

A batch library for processing a list of items in parallel
Documentation
1
2
3
4
5
6
7
8
9
10
/// A trait for building parallel asynchronous steps.
pub trait AsyncParallelStepBuilderTrait {
    /// sets the number of workers to use for parallel processing.
    /// Defaults to 1.
    /// # Parameters
    /// - `processor_concurrency_size`: The number of workers to use for parallel processing.
    /// # Returns `Self`
    /// The modified builder instance.
    fn workers(self, processor_concurrency_size: usize) -> Self;
}