Interface ParallelListIterable<T>

All Superinterfaces:
ParallelIterable<T>
All Known Implementing Classes:
AbstractParallelListIterable, ListIterableParallelIterable, MultiReaderParallelListIterable, NonParallelListIterable, ParallelCollectListIterable, ParallelFlatCollectListIterable, SynchronizedParallelListIterable

public interface ParallelListIterable<T> extends ParallelIterable<T>
A ParallelIterable is RichIterable which will defer evaluation for certain methods like select, reject, collect, etc. Any methods that do not return a ParallelIterable when called will cause evaluation to be forced. Evaluation occurs in parallel. All code blocks passed in must be stateless or thread-safe.
Since:
5.0