Class PassThruCombiner<T>
- java.lang.Object
-
- org.eclipse.collections.impl.parallel.PassThruCombiner<T>
-
- All Implemented Interfaces:
Serializable,Combiner<T>
public final class PassThruCombiner<T> extends Object implements Combiner<T>
A PassThruCombiner doesn't do anything. It can be used for operations that require no combination, as in a fork with no join step.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PassThruCombiner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcombineAll(Iterable<T> thingsToCombine)voidcombineOne(T thingToCombine)booleanuseCombineOne()
-
-
-
Method Detail
-
combineAll
public void combineAll(Iterable<T> thingsToCombine)
- Specified by:
combineAllin interfaceCombiner<T>
-
combineOne
public void combineOne(T thingToCombine)
- Specified by:
combineOnein interfaceCombiner<T>
-
useCombineOne
public boolean useCombineOne()
- Specified by:
useCombineOnein interfaceCombiner<T>
-
-