Modifier and Type | Field and Description |
---|---|
protected DeltaIterationBase<ST,?> |
containingIteration |
compilerHints, name, operatorInfo, parameters
Constructor and Description |
---|
SolutionSetPlaceHolder(DeltaIterationBase<ST,?> container,
OperatorInformation<ST> operatorInfo) |
Modifier and Type | Method and Description |
---|---|
void |
accept(Visitor<Operator<?>> visitor)
Contains the logic to invoke the visitor and continue the traversal.
|
DeltaIterationBase<ST,?> |
getContainingWorksetIteration() |
UserCodeWrapper<?> |
getUserCodeWrapper()
Gets the user code wrapper.
|
createUnionCascade, createUnionCascade, createUnionCascade, getCompilerHints, getMinResources, getName, getOperatorInfo, getParallelism, getParameters, getPreferredResources, setName, setParallelism, setParameter, setParameter, setParameter, setResources, toString
protected final DeltaIterationBase<ST,?> containingIteration
public SolutionSetPlaceHolder(DeltaIterationBase<ST,?> container, OperatorInformation<ST> operatorInfo)
public DeltaIterationBase<ST,?> getContainingWorksetIteration()
public void accept(Visitor<Operator<?>> visitor)
Visitable
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);
}
}
visitor
- The visitor to be called with this object as the parameter.Visitor.preVisit(Visitable)
,
Visitor.postVisit(Visitable)
public UserCodeWrapper<?> getUserCodeWrapper()
Operator
getUserCodeWrapper
in class Operator<ST>
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.