Class TimeLimitStep<S>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.filter.FilterStep<S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.filter.TimeLimitStep<S>
-
- All Implemented Interfaces:
Serializable,Cloneable,Iterator<Traverser.Admin<S>>,Step<S,S>
public final class TimeLimitStep<S> extends FilterStep<S>
- Author:
- Randall Barnhart (random pi), Marko A. Rodriguez (http://markorodriguez.com), Stephen Mallette (http://stephen.genoprime.com)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
-
-
Constructor Summary
Constructors Constructor Description TimeLimitStep(Traversal.Admin traversal, long timeLimit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TimeLimitStep<S>clone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.protected booleanfilter(Traverser.Admin<S> traverser)booleangetTimedOut()inthashCode()voidreset()Reset the state of the step such that it has no incoming starts.StringtoString()-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.filter.FilterStep
processNextStart
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep, setTraversal
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.Step
equals, getRequirements
-
-
-
-
Constructor Detail
-
TimeLimitStep
public TimeLimitStep(Traversal.Admin traversal, long timeLimit)
-
-
Method Detail
-
filter
protected boolean filter(Traverser.Admin<S> traverser)
- Specified by:
filterin classFilterStep<S>
-
toString
public String toString()
- Overrides:
toStringin classAbstractStep<S,S>
-
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.
-
getTimedOut
public boolean getTimedOut()
-
clone
public TimeLimitStep<S> 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.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAbstractStep<S,S>
-
-