T
- The type of the elements that result from this SelectTransformation
@Internal public class SelectTransformation<T> extends StreamTransformation<T>
SplitTransformation
that
splits elements into several logical streams with assigned names.
This does not create a physical operation, it only affects how upstream operations are connected to downstream operations.
bufferTimeout, id, idCounter, name, outputType, typeUsed
Constructor and Description |
---|
SelectTransformation(StreamTransformation<T> input,
List<String> selectedNames)
Creates a new
SelectionTransformation from the given input that only selects
the streams with the selected names. |
Modifier and Type | Method and Description |
---|---|
StreamTransformation<T> |
getInput()
Returns the input
StreamTransformation . |
List<String> |
getSelectedNames()
Returns the names of the split streams that this
SelectTransformation selects. |
Collection<StreamTransformation<?>> |
getTransitivePredecessors()
Returns all transitive predecessor
StreamTransformation s of this StreamTransformation . |
void |
setChainingStrategy(ChainingStrategy strategy)
Sets the chaining strategy of this
StreamTransformation . |
equals, getBufferTimeout, getId, getMaxParallelism, getMinResources, getName, getNewNodeId, getOutputType, getParallelism, getPreferredResources, getSlotSharingGroup, getUid, getUserProvidedNodeHash, hashCode, setBufferTimeout, setMaxParallelism, setName, setOutputType, setParallelism, setResources, setSlotSharingGroup, setUid, setUidHash, toString
public SelectTransformation(StreamTransformation<T> input, List<String> selectedNames)
SelectionTransformation
from the given input that only selects
the streams with the selected names.input
- The input StreamTransformation
selectedNames
- The names from the upstream SplitTransformation
that this
SelectTransformation
selects.public StreamTransformation<T> getInput()
StreamTransformation
.public List<String> getSelectedNames()
SelectTransformation
selects.public Collection<StreamTransformation<?>> getTransitivePredecessors()
StreamTransformation
StreamTransformation
s of this StreamTransformation
. This
is, for example, used when determining whether a feedback edge of an iteration
actually has the iteration head as a predecessor.getTransitivePredecessors
in class StreamTransformation<T>
public final void setChainingStrategy(ChainingStrategy strategy)
StreamTransformation
StreamTransformation
.setChainingStrategy
in class StreamTransformation<T>
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.