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:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA 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 Summary
FieldsModifier and TypeFieldDescriptionprotected booleanstatic final ObjectA seed value not to be emitted from theReducingBarrierStephelping with flow control within this step.protected BinaryOperator<E>If theseedSupplierisnullthen the default behavior is to generate the seed from the starts.Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddBarrier(E barrier) Add a barrier to the step.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 EIf theseedSupplierisnullthen this method is called.If a barrier is unproductive then provide an empty object suitable to the implementation which can be used to represent that state.TheMemoryComputeKeythat will be used by this step.Gets the provided seed supplier or providesgenerateSeedFromStarts().booleanWhether or not the step has an accessible barrier.Get the next barrier within this step.voidProcess all left traversers by do not yield the resultant output.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.AbstractStep
addLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hashCode, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep, setTraversal, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.Generating
generateFinalResultMethods inherited from interface java.util.Iterator
forEachRemaining, removeMethods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.Step
equals, getRequirements
-
Field Details
-
NON_EMITTING_SEED
A seed value not to be emitted from theReducingBarrierStephelping with flow control within this step. -
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. -
reducingBiOperator
-
hasProcessedOnce
protected boolean hasProcessedOnce
-
-
Constructor Details
-
ReducingBarrierStep
-
-
Method Details
-
setSeedSupplier
-
getSeedSupplier
Gets the provided seed supplier or providesgenerateSeedFromStarts(). -
generateSeedFromStarts
If theseedSupplierisnullthen this method is called. -
projectTraverser
-
setReducingBiOperator
-
getBiOperator
-
reset
public 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. -
done
public 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. -
processAllStarts
public 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 interfaceBarrier<S>
-
getEmptyBarrier
Description copied from interface:BarrierIf a barrier is unproductive then provide an empty object suitable to the implementation which can be used to represent that state. This is important for cases likeby(out().order().fold())where theorder()might filter but thefold()means the traversal is productive.- Specified by:
getEmptyBarrierin interfaceBarrier<S>
-
hasNextBarrier
public boolean hasNextBarrier()Description copied from interface:BarrierWhether or not the step has an accessible barrier.- Specified by:
hasNextBarrierin interfaceBarrier<S>- Returns:
- whether a barrier exists or not
-
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 interfaceBarrier<S>- Returns:
- the next barrier of the step
-
addBarrier
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 interfaceBarrier<S>- Parameters:
barrier- the barrier to merge in
-
processNextStart
- Specified by:
processNextStartin classAbstractStep<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. -
getMemoryComputeKey
Description copied from interface:MemoryComputingTheMemoryComputeKeythat will be used by this step.- Specified by:
getMemoryComputeKeyin interfaceMemoryComputing<S>- Returns:
- the MemoryComputeKey to use
-