Class OrderGlobalStep<S,C extends Comparable>
java.lang.Object
org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,S>
org.apache.tinkerpop.gremlin.process.traversal.step.util.CollectingBarrierStep<S>
org.apache.tinkerpop.gremlin.process.traversal.step.map.OrderGlobalStep<S,C>
- All Implemented Interfaces:
Serializable,AutoCloseable,Cloneable,Iterator<Traverser.Admin<S>>,Step<S,,S> Barrier<TraverserSet<S>>,ByModulating,ComparatorHolder<S,,C> FilteringBarrier<TraverserSet<S>>,MemoryComputing<TraverserSet<S>>,PopContaining,Seedable,TraversalParent
public final class OrderGlobalStep<S,C extends Comparable>
extends CollectingBarrierStep<S>
implements ComparatorHolder<S,C>, TraversalParent, ByModulating, Seedable
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.PopContaining
PopContaining.PopInstruction -
Field Summary
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.CollectingBarrierStep
traverserSetFields 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 TypeMethodDescriptionvoidaddComparator(Traversal.Admin<S, C> traversal, Comparator<C> comparator) Add aTraversal-basedComparatorto the holder.voidbarrierConsumer(TraverserSet<S> traverserSet) clone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.List<org.javatuples.Pair<Traversal.Admin<S,C>, Comparator<C>>> Get the comparators associated with this holder.longgetLimit()Gets a list of all "local" child traversals for this step.TheMemoryComputeKeythat will be used by this step.Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.inthashCode()voidmodulateBy(Traversal.Admin<?, ?> traversal) voidmodulateBy(Traversal.Admin<?, ?> traversal, Comparator comparator) voidProcess all left traversers by do not yield the resultant output.voidreplaceLocalChild(Traversal.Admin<?, ?> oldTraversal, Traversal.Admin<?, ?> newTraversal) voidresetSeed(long seed) voidsetLimit(long limit) voidsetTraversal(Traversal.Admin<?, ?> parentTraversal) Set theTraversalthat this step is contained within.toString()Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.CollectingBarrierStep
addBarrier, getEmptyBarrier, hasNextBarrier, nextBarrier, processNextStart, resetMethods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStepMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ByModulating
modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateBy, modulateByMethods inherited from interface java.util.Iterator
forEachRemaining, removeMethods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent
addGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getPopInstructions, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild
-
Constructor Details
-
OrderGlobalStep
-
-
Method Details
-
resetSeed
public void resetSeed(long seed) -
barrierConsumer
- Specified by:
barrierConsumerin classCollectingBarrierStep<S>
-
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>- Overrides:
processAllStartsin classCollectingBarrierStep<S>
-
setLimit
public void setLimit(long limit) -
getLimit
public long getLimit() -
addComparator
Description copied from interface:ComparatorHolder- Specified by:
addComparatorin interfaceComparatorHolder<S,C extends Comparable> - Parameters:
traversal- the traversal to pre-process the object by.comparator- the comparator to compare the result of the object after traversal processing
-
modulateBy
- Specified by:
modulateByin interfaceByModulating
-
modulateBy
- Specified by:
modulateByin interfaceByModulating
-
replaceLocalChild
- Specified by:
replaceLocalChildin interfaceTraversalParent
-
getComparators
Description copied from interface:ComparatorHolderGet the comparators associated with this holder. The comparators are ordered according to their oder of operation.- Specified by:
getComparatorsin interfaceComparatorHolder<S,C extends Comparable> - Returns:
- a list of
Traversal/Comparator-pairs
-
toString
- Overrides:
toStringin classCollectingBarrierStep<S>
-
hashCode
public int hashCode()- Overrides:
hashCodein classCollectingBarrierStep<S>
-
getRequirements
Description copied from interface:StepProvide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.- Specified by:
getRequirementsin interfaceStep<S,C extends Comparable> - Overrides:
getRequirementsin classCollectingBarrierStep<S>- Returns:
- the set of requirements
-
getLocalChildren
Description copied from interface:TraversalParentGets a list of all "local" child traversals for this step. A "local" traversal is one which is evaluated independently for each incoming traverser to the parent step. This is typically used in cases where the child is used to process or augment each traverser individually. SeeLocalSteporByModulatingas examples.- Specified by:
getLocalChildrenin interfaceTraversalParent
-
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.- Specified by:
clonein interfaceStep<S,C extends Comparable> - Overrides:
clonein classCollectingBarrierStep<S>- Returns:
- The cloned step
-
setTraversal
Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
setTraversalin interfaceStep<S,C extends Comparable> - Overrides:
setTraversalin classAbstractStep<S,S> - Parameters:
parentTraversal- the new traversal for this step
-
getMemoryComputeKey
Description copied from interface:MemoryComputingTheMemoryComputeKeythat will be used by this step.- Specified by:
getMemoryComputeKeyin interfaceMemoryComputing<S>- Overrides:
getMemoryComputeKeyin classCollectingBarrierStep<S>- Returns:
- the MemoryComputeKey to use
-