public interface ParallelizableRunnable
extends java.lang.Runnable
Interface for parallel runnables. Each runnable is required to have a CountDownLatch.
When the processing is done, the Runnable should call latch.countDown() in order
to inform the dispatching ParallelThreadExecutor about having done the computation.