Class CallStep<S,E>
java.lang.Object
org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,E>
org.apache.tinkerpop.gremlin.process.traversal.step.map.CallStep<S,E>
- All Implemented Interfaces:
Serializable,AutoCloseable,Cloneable,Iterator<Traverser.Admin<E>>,Step<S,,E> Configuring,CallStepContract<S,,E> Parameterizing,PopContaining,TraversalParent
Reference implementation for service calls via the
ServiceRegistry and Service APIs. This step
can be used to start a traversal or it can be used mid-traversal with one at a time or barrier execution.- Author:
- Mike Personick (http://github.com/mikepersonick)
- See Also:
-
Nested Class Summary
Nested 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.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChildFields inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.map.CallStepContract
CONCRETE_STEPS -
Constructor Summary
ConstructorsConstructorDescriptionCallStep(Traversal.Admin traversal, boolean isStart) CallStep(Traversal.Admin traversal, boolean isStart, String service) CallStep(Traversal.Admin traversal, boolean isStart, String service, Map staticParams) CallStep(Traversal.Admin traversal, boolean isStart, String service, Map staticParams, Traversal.Admin<S, Map> mapTraversal) -
Method Summary
Modifier and TypeMethodDescriptionclone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.voidclose()protected voidvoidAccept a configuration to theStep.protected CloseableIteratorflatMap(Traverser.Admin<S> traverser) protected CloseableIteratorflatMap(TraverserSet<S> traverserSet) <S,E> List<Traversal.Admin<S, E>> Gets a list of all "local" child traversals for this step.protected MapgetMergedParams(Traverser.Admin<S> traverser) protected MapgetMergedParams(TraverserSet<S> traverserSet) Gets the parameters on the step.Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.inthashCode()protected Traverser.Admin<E>voidreset()Reset the state of the step such that it has no incoming starts.service()voidsetTraversal(Traversal.Admin<?, ?> parentTraversal) Set theTraversalthat this step is contained within.protected CloseableIteratorstart()toString()Methods 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.map.CallStepContract
getStaticParamsAsGValue, serviceGValueSafeMethods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, removeMethods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.Step
addLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getTraversal, hasStarts, removeLabel, setId, setNextStep, setPreviousStepMethods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent
addGlobalChild, addLocalChild, asStep, getGlobalChildren, getPopInstructions, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
-
Constructor Details
-
CallStep
-
CallStep
-
CallStep
-
CallStep
public CallStep(Traversal.Admin traversal, boolean isStart, String service, Map staticParams, Traversal.Admin<S, Map> mapTraversal)
-
-
Method Details
-
service
- Specified by:
servicein interfaceCallStepContract<S,E>
-
getServiceName
- Specified by:
getServiceNamein interfaceCallStepContract<S,E>
-
processNextStart
- Specified by:
processNextStartin classAbstractStep<S,E>
-
close
public void close()- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceTraversalParent
-
closeIterator
protected void closeIterator() -
getStaticParams
- Specified by:
getStaticParamsin interfaceCallStepContract<S,E>
-
getMergedParams
- Specified by:
getMergedParamsin interfaceCallStepContract<S,E>
-
getMergedParams
-
getMergedParams
-
start
-
flatMap
-
flatMap
-
getServiceRegistry
- Specified by:
getServiceRegistryin interfaceCallStepContract<S,E>
-
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. -
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
-
setTraversal
Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
setTraversalin interfaceStep<S,E> - Overrides:
setTraversalin classAbstractStep<S,E> - Parameters:
parentTraversal- the new traversal for this step
-
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,E> - Returns:
- the set of requirements
-
toString
- Overrides:
toStringin classAbstractStep<S,E>
-
hashCode
public int hashCode()- Overrides:
hashCodein 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. -
configure
Description copied from interface:ConfiguringAccept a configuration to theStep. Note that this interface extendsParameterizingand so there is an expectation that theStepimplementation will have aParametersinstance that will house any values passed to this method. Storing these configurations inParametersis 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:
configurein interfaceConfiguring
-
getParameters
Description copied from interface:ParameterizingGets the parameters on the step.- Specified by:
getParametersin interfaceParameterizing
-