Class DeltaIterationBase.WorksetPlaceHolder<WT>
- java.lang.Object
-
- org.apache.flink.api.common.operators.Operator<WT>
-
- org.apache.flink.api.common.operators.base.DeltaIterationBase.WorksetPlaceHolder<WT>
-
-
Field Summary
-
Fields inherited from class org.apache.flink.api.common.operators.Operator
compilerHints, name, operatorInfo, parameters
-
-
Constructor Summary
Constructors Constructor Description WorksetPlaceHolder(DeltaIterationBase<?,WT> container, OperatorInformation<WT> operatorInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor<Operator<?>> visitor)
Contains the logic to invoke the visitor and continue the traversal.DeltaIterationBase<?,WT>
getContainingWorksetIteration()
UserCodeWrapper<?>
getUserCodeWrapper()
Gets the user code wrapper.-
Methods inherited from class org.apache.flink.api.common.operators.Operator
createUnionCascade, createUnionCascade, createUnionCascade, getCompilerHints, getMinResources, getName, getOperatorInfo, getParallelism, getParameters, getPreferredResources, setName, setParallelism, setParameter, setResources, toString
-
-
-
-
Constructor Detail
-
WorksetPlaceHolder
public WorksetPlaceHolder(DeltaIterationBase<?,WT> container, OperatorInformation<WT> operatorInfo)
-
-
Method Detail
-
getContainingWorksetIteration
public DeltaIterationBase<?,WT> getContainingWorksetIteration()
-
accept
public void accept(Visitor<Operator<?>> visitor)
Description copied from interface:Visitable
Contains the logic to invoke the visitor and continue the traversal. Typically invokes the pre-visit method of the visitor, then sends the visitor to the children (or predecessors) and then invokes the post-visit method.A typical code example is the following:
public void accept(Visitor<Operator> visitor) { boolean descend = visitor.preVisit(this); if (descend) { if (this.input != null) { this.input.accept(visitor); } visitor.postVisit(this); } }
- Parameters:
visitor
- The visitor to be called with this object as the parameter.- See Also:
Visitor.preVisit(Visitable)
,Visitor.postVisit(Visitable)
-
getUserCodeWrapper
public UserCodeWrapper<?> getUserCodeWrapper()
Description copied from class:Operator
Gets the user code wrapper. In the case of a pact, that object will be the stub with the user function, in the case of an input or output format, it will be the format object.- Overrides:
getUserCodeWrapper
in classOperator<WT>
- Returns:
- The class with the user code.
-
-