Class ReducingBarrierStep<S,E>
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,E>
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep<S,E>
 
 
- 
- All Implemented Interfaces:
- Serializable,- Cloneable,- Iterator<Traverser.Admin<E>>,- Step<S,E>,- Barrier<E>,- Generating<E,E>,- MemoryComputing<E>
 - Direct Known Subclasses:
- CountGlobalStep,- FoldStep,- GroupCountStep,- GroupStep,- MaxGlobalStep,- MeanGlobalStep,- MinGlobalStep,- SumGlobalStep,- TreeStep
 
 public abstract class ReducingBarrierStep<S,E> extends AbstractStep<S,E> implements Barrier<E>, Generating<E,E> - Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classReducingBarrierStep.NonEmittingSeedA class that represents a value that is not be to be emitted which helps with flow control internal to the class and is serializable in Gryo for use in OLAP.
 - 
Field SummaryFields Modifier and Type Field Description protected booleanhasProcessedOncestatic ObjectNON_EMITTING_SEEDA seed value not to be emitted from theReducingBarrierStephelping with flow control within this step.protected BinaryOperator<E>reducingBiOperatorprotected Supplier<E>seedSupplierIf theseedSupplierisnullthen the default behavior is to generate the seed from the starts.- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepid, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
 
- 
 - 
Constructor SummaryConstructors Constructor Description ReducingBarrierStep(Traversal.Admin traversal)
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaddBarrier(E barrier)Add a barrier to the step.ReducingBarrierStep<S,E>clone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.voiddone()A way to hard set that the barrier is complete.protected EgenerateSeedFromStarts()If theseedSupplierisnullthen this method is called.BinaryOperator<E>getBiOperator()MemoryComputeKey<E>getMemoryComputeKey()TheMemoryComputeKeythat will be used by this step.Supplier<E>getSeedSupplier()Gets the provided seed supplier or providesgenerateSeedFromStarts().booleanhasNextBarrier()Whether or not the step has an accessible barrier.EnextBarrier()Get the next barrier within this step.voidprocessAllStarts()Process all left traversers by do not yield the resultant output.Traverser.Admin<E>processNextStart()abstract EprojectTraverser(Traverser.Admin<S> traverser)voidreset()Reset the state of the step such that it has no incoming starts.voidsetReducingBiOperator(BinaryOperator<E> reducingBiOperator)voidsetSeedSupplier(Supplier<E> seedSupplier)- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepaddLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hashCode, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep, setTraversal, toString
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.GeneratinggenerateFinalResult
 - 
Methods inherited from interface java.util.IteratorforEachRemaining, remove
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.Stepequals, getRequirements
 
- 
 
- 
- 
- 
Field Detail- 
NON_EMITTING_SEEDpublic static final Object NON_EMITTING_SEED A seed value not to be emitted from theReducingBarrierStephelping with flow control within this step.
 - 
seedSupplierprotected Supplier<E> seedSupplier If theseedSupplierisnullthen the default behavior is to generate the seed from the starts. This supplier must be callable as a constant and not rely on state from the class. Prefer overridinggenerateSeedFromStarts()otherwise.
 - 
reducingBiOperatorprotected BinaryOperator<E> reducingBiOperator 
 - 
hasProcessedOnceprotected boolean hasProcessedOnce 
 
- 
 - 
Constructor Detail- 
ReducingBarrierSteppublic ReducingBarrierStep(Traversal.Admin traversal) 
 
- 
 - 
Method Detail- 
getSeedSupplierpublic Supplier<E> getSeedSupplier() Gets the provided seed supplier or providesgenerateSeedFromStarts().
 - 
generateSeedFromStartsprotected E generateSeedFromStarts() If theseedSupplierisnullthen this method is called.
 - 
projectTraverserpublic abstract E projectTraverser(Traverser.Admin<S> traverser) 
 - 
setReducingBiOperatorpublic void setReducingBiOperator(BinaryOperator<E> reducingBiOperator) 
 - 
getBiOperatorpublic BinaryOperator<E> getBiOperator() 
 - 
resetpublic void reset() Description copied from interface:StepReset the state of the step such that it has no incoming starts. Internal states are to be reset, but any sideEffect data structures are not to be recreated.
 - 
donepublic void done() Description copied from interface:BarrierA way to hard set that the barrier is complete. This is necessary when parallel barriers don't all have barriers and need hard resetting. The default implementation does nothing.
 - 
processAllStartspublic void processAllStarts() Description copied from interface:BarrierProcess all left traversers by do not yield the resultant output. This method is useful for steps likeReducingBarrierStep, where traversers can be processed "on the fly" and thus, reduce memory consumption.- Specified by:
- processAllStartsin interface- Barrier<S>
 
 - 
hasNextBarrierpublic boolean hasNextBarrier() Description copied from interface:BarrierWhether or not the step has an accessible barrier.- Specified by:
- hasNextBarrierin interface- Barrier<S>
- Returns:
- whether a barrier exists or not
 
 - 
nextBarrierpublic E nextBarrier() Description copied from interface:BarrierGet the next barrier within this step. Barriers from parallel steps can be the be merged to create a single step with merge barriers.- Specified by:
- nextBarrierin interface- Barrier<S>
- Returns:
- the next barrier of the step
 
 - 
addBarrierpublic void addBarrier(E barrier) Description copied from interface:BarrierAdd a barrier to the step. This typically happens when multiple parallel barriers need to become one barrier at a single step.- Specified by:
- addBarrierin interface- Barrier<S>
- Parameters:
- barrier- the barrier to merge in
 
 - 
processNextStartpublic Traverser.Admin<E> processNextStart() - Specified by:
- processNextStartin class- AbstractStep<S,E>
 
 - 
clonepublic ReducingBarrierStep<S,E> clone() Description copied from interface:StepCloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication. When cloning a step, it is important that the steps, the cloned step is equivalent to the state of the step whenStep.reset()is called. Moreover, the previous and next steps should be set toEmptyStep.
 - 
getMemoryComputeKeypublic MemoryComputeKey<E> getMemoryComputeKey() Description copied from interface:MemoryComputingTheMemoryComputeKeythat will be used by this step.- Specified by:
- getMemoryComputeKeyin interface- MemoryComputing<S>
- Returns:
- the MemoryComputeKey to use
 
 
- 
 
-