void |
ArrayProcedureFJTaskRunner.executeAndCombine(Executor executor,
ProcedureFactory<BT> procedureFactory,
T[] array) |
|
void |
BatchIterableProcedureFJTaskRunner.executeAndCombine(Executor executor,
ProcedureFactory<BT> procedureFactory,
BatchIterable<T> set) |
|
void |
ProcedureFJTaskRunner.executeAndCombine(Executor executor,
ProcedureFactory<BT> procedureFactory,
List<T> list) |
|
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) |
|