static <T,BT extends Procedure<? super T>> void |
ParallelArrayIterate.forEach(T[] array,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelArrayIterate.forEach(T[] array,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEach(Iterable<T> iterable,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEach(Iterable<T> iterable,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int batchSize) |
Iterate over the collection specified in parallel batches using the default values for the task size.
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEach(Iterable<T> iterable,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount) |
Iterate over the collection specified in parallel batches using the default values for the task size.
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEach(Iterable<T> iterable,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount,
Executor executor) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEach(Iterable<T> iterable,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int batchSize,
Executor executor) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEach(Iterable<T> iterable,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
Executor executor) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEachInBatchWithExecutor(BatchIterable<T> set,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount,
Executor executor) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelIterate.forEachInListOnExecutor(List<T> list,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount,
Executor executor) |
|
static <T,BT extends Procedure<? super T>> void |
ParallelArrayIterate.forEachOn(T[] array,
ProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount,
Executor executor) |
|
static <T,BT extends ObjectIntProcedure<? super T>> void |
ParallelIterate.forEachWithIndex(Iterable<T> iterable,
ObjectIntProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount) |
|
static <T,BT extends ObjectIntProcedure<? super T>> void |
ParallelIterate.forEachWithIndex(Iterable<T> iterable,
ObjectIntProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount,
Executor executor) |
|
static <T,BT extends ObjectIntProcedure<? super T>> void |
ParallelIterate.forEachWithIndex(Iterable<T> iterable,
ObjectIntProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
Executor executor) |
|
static <T,BT extends ObjectIntProcedure<? super T>> void |
ParallelIterate.forEachWithIndexInListOnExecutor(List<T> list,
ObjectIntProcedureFactory<BT> procedureFactory,
Combiner<BT> combiner,
int minForkSize,
int taskCount,
Executor executor) |
|