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>
org.apache.tinkerpop.gremlin.process.traversal.step.map.MeanGlobalStep<S,E>
- All Implemented Interfaces:
Serializable,Cloneable,Iterator<Traverser.Admin<E>>,Step<S,,E> Barrier<E>,Generating<E,,E> MemoryComputing<E>
public final class MeanGlobalStep<S extends Number,E extends Number>
extends ReducingBarrierStep<S,E>
- Author:
- Marko A. Rodriguez (http://markorodriguez.com), Daniel Kuppitz (http://gremlin.guru)
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classMeanGlobalStep.MeanGlobalBiOperator<S extends Number>static final classNested classes/interfaces inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep
ReducingBarrierStep.NonEmittingSeed -
Field Summary
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep
hasProcessedOnce, NON_EMITTING_SEED, reducingBiOperator, seedSupplierFields 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 TypeMethodDescriptiongenerateFinalResult(E meanNumber) Post-process the side-effect and return the post-processed side-effect.protected EAdvances the starts until a non-null value is found or simply returnsnull.Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.voidProcess all left traversers by do not yield the resultant output.projectTraverser(Traverser.Admin<S> traverser) Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.ReducingBarrierStep
addBarrier, clone, done, getBiOperator, getEmptyBarrier, getMemoryComputeKey, getSeedSupplier, hasNextBarrier, nextBarrier, processNextStart, reset, setReducingBiOperator, setSeedSupplierMethods 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 java.util.Iterator
forEachRemaining, remove
-
Constructor Details
-
MeanGlobalStep
-
-
Method Details
-
generateSeedFromStarts
Advances the starts until a non-null value is found or simply returnsnull. In this way, an allnullstream will result innull.- Overrides:
generateSeedFromStartsin classReducingBarrierStep<S extends Number,E extends Number>
-
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 extends Number>- Overrides:
processAllStartsin classReducingBarrierStep<S extends Number,E extends Number>
-
projectTraverser
- Specified by:
projectTraverserin classReducingBarrierStep<S extends Number,E extends Number>
-
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.- Returns:
- the set of requirements
-
generateFinalResult
Description copied from interface:GeneratingPost-process the side-effect and return the post-processed side-effect. The default implementation is simply the identity function and returns the argument.- Parameters:
meanNumber- the pre-processed side-effect.- Returns:
- the post-processed side-effect.
-