Class PassThruCombiner<T>
- java.lang.Object
-
- org.eclipse.collections.impl.parallel.PassThruCombiner<T>
-
- All Implemented Interfaces:
java.io.Serializable,Combiner<T>
public final class PassThruCombiner<T> extends java.lang.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
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description PassThruCombiner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcombineAll(java.lang.Iterable<T> thingsToCombine)voidcombineOne(T thingToCombine)booleanuseCombineOne()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
combineAll
public void combineAll(java.lang.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>
-
-