Execute processor over data set.
Processing results.
Creates a new PromiseExecutor which encapsulates task that needs to be run over data set.
Follows Command Design Pattern.
Processing function.
Data Set.
Processing concurrency.
Can take the following values:
- 0 - data will be processed in sequential order
- [1, Infinity) - data will be processed in batches of concurrency size
- Infinity - all data will be processed in parallel
Formats concurrency to human readable format.
Processing concurrency.
Runs processor over data with specified concurrency.
Processing function.
Data Set.
Processing concurrency.
Can take the following values:
- 0 - data will be processed in sequential order
- [1, Infinity) - data will be processed in batches of concurrency size
- Infinity - all data will be processed in parallel
Processing results.
Class which executes a task over a data set.