Package | Description |
---|---|
dev.nm.misc.parallel |
Modifier and Type | Method and Description |
---|---|
void |
ParallelExecutor.conditionalForLoop(boolean conditionToParallelize,
int start,
int end,
int increment,
LoopBody body)
Runs a parallel for-loop only if
conditionToParallelize is true . |
void |
ParallelExecutor.conditionalForLoop(boolean conditionToParallelize,
int start,
int end,
LoopBody body)
Calls
conditionalForLoop
with increment of 1. |
void |
ParallelExecutor.forLoop(int start,
int end,
int increment,
LoopBody body)
Runs a for-loop in parallel.
|
void |
ParallelExecutor.forLoop(int start,
int end,
LoopBody body)
Calls
forLoop
with increment of 1. |
Copyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.