Class PeerPressureVertexProgramStep
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<ComputerResult,ComputerResult>
-
- org.apache.tinkerpop.gremlin.process.computer.traversal.step.map.VertexProgramStep
-
- org.apache.tinkerpop.gremlin.process.computer.traversal.step.map.PeerPressureVertexProgramStep
-
- All Implemented Interfaces:
Serializable
,AutoCloseable
,Cloneable
,Iterator<Traverser.Admin<ComputerResult>>
,VertexComputing
,Step<ComputerResult,ComputerResult>
,Configuring
,Parameterizing
,TraversalParent
public final class PeerPressureVertexProgramStep extends VertexProgramStep implements TraversalParent, Configuring
- Author:
- 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.computer.traversal.step.map.VertexProgramStep
computer, first, ROOT_TRAVERSAL, STEP_ID
-
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 PeerPressureVertexProgramStep(Traversal.Admin traversal)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PeerPressureVertexProgramStep
clone()
Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.void
configure(Object... keyValues)
Accept a configuration to theStep
.PeerPressureVertexProgram
generateProgram(Graph graph, Memory memory)
Generate theVertexProgram
.List<Traversal.Admin<Vertex,Edge>>
getLocalChildren()
Parameters
getParameters()
Gets the parameters on the step.Set<TraverserRequirement>
getRequirements()
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly.int
hashCode()
void
setTraversal(Traversal.Admin<?,?> parentTraversal)
Set theTraversal
that this step is contained within.String
toString()
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.computer.traversal.step.map.VertexProgramStep
getComputer, isEndStep, previousTraversalVertexProgram, processNextStart, setComputer
-
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, reset, setId, setNextStep, setPreviousStep
-
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.TraversalParent
addGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
-
-
-
-
Constructor Detail
-
PeerPressureVertexProgramStep
public PeerPressureVertexProgramStep(Traversal.Admin traversal)
-
-
Method Detail
-
configure
public void configure(Object... keyValues)
Description copied from interface:Configuring
Accept a configuration to theStep
. Note that this interface extendsParameterizing
and so there is an expectation that theStep
implementation will have aParameters
instance that will house any values passed to this method. Storing these configurations inParameters
is not a requirement however, IF the configuration is an expected option for the step and can be stored on a member field that can be accessed on the step by more direct means (i.e. like a getter method).- Specified by:
configure
in interfaceConfiguring
-
getParameters
public Parameters getParameters()
Description copied from interface:Parameterizing
Gets the parameters on the step.- Specified by:
getParameters
in interfaceParameterizing
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractStep<ComputerResult,ComputerResult>
-
getLocalChildren
public List<Traversal.Admin<Vertex,Edge>> getLocalChildren()
- Specified by:
getLocalChildren
in interfaceTraversalParent
-
toString
public String toString()
- Overrides:
toString
in classAbstractStep<ComputerResult,ComputerResult>
-
generateProgram
public PeerPressureVertexProgram generateProgram(Graph graph, Memory memory)
Description copied from interface:VertexComputing
Generate theVertexProgram
.- Specified by:
generateProgram
in interfaceVertexComputing
- Parameters:
graph
- theGraph
that the program will be executed over.memory
- theMemory
from the previous OLAP job if it exists, else its an empty memory structure.- Returns:
- the generated vertex program instance.
-
getRequirements
public Set<TraverserRequirement> getRequirements()
Description copied from interface:Step
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.- Specified by:
getRequirements
in interfaceStep<ComputerResult,ComputerResult>
- Returns:
- the set of requirements
-
clone
public PeerPressureVertexProgramStep clone()
Description copied from interface:Step
Cloning 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:
clone
in interfaceStep<ComputerResult,ComputerResult>
- Overrides:
clone
in classAbstractStep<ComputerResult,ComputerResult>
- Returns:
- The cloned step
-
setTraversal
public void setTraversal(Traversal.Admin<?,?> parentTraversal)
Description copied from interface:Step
Set theTraversal
that this step is contained within.- Specified by:
setTraversal
in interfaceStep<ComputerResult,ComputerResult>
- Overrides:
setTraversal
in classAbstractStep<ComputerResult,ComputerResult>
- Parameters:
parentTraversal
- the new traversal for this step
-
-