IN1 - The type of the elements in the first input StreamTransformationIN2 - The type of the elements in the second input StreamTransformationOUT - The type of the elements that result from this TwoInputTransformationpublic class TwoInputTransformation<IN1,IN2,OUT> extends StreamTransformation<OUT>
TwoInputStreamOperator to two input
StreamTransformations. The result is again only one stream.bufferTimeout, id, idCounter, name, outputType, resourceStrategy, typeUsed| Constructor and Description |
|---|
TwoInputTransformation(StreamTransformation<IN1> input1,
StreamTransformation<IN2> input2,
String name,
TwoInputStreamOperator<IN1,IN2,OUT> operator,
TypeInformation<OUT> outputType,
int parallelism)
Creates a new
TwoInputTransformation from the given inputs and operator. |
| Modifier and Type | Method and Description |
|---|---|
StreamTransformation<IN1> |
getInput1()
Returns the first input
StreamTransformation of this TwoInputTransformation. |
StreamTransformation<IN2> |
getInput2()
Returns the first input
StreamTransformation of this TwoInputTransformation. |
TypeInformation<IN1> |
getInputType1()
Returns the
TypeInformation for the elements from the first input. |
TypeInformation<IN2> |
getInputType2()
Returns the
TypeInformation for the elements from the first input. |
TwoInputStreamOperator<IN1,IN2,OUT> |
getOperator()
Returns the
TwoInputStreamOperator of this Transformation. |
Collection<StreamTransformation<?>> |
getTransitivePredecessors()
Returns all transitive predecessor
StreamTransformations of this StreamTransformation. |
void |
setChainingStrategy(ChainingStrategy strategy)
Sets the chaining strategy of this
StreamTransformation. |
equals, getBufferTimeout, getId, getName, getNewNodeId, getOutputType, getParallelism, getResourceStrategy, hashCode, setBufferTimeout, setName, setOutputType, setParallelism, setResourceStrategy, toStringpublic TwoInputTransformation(StreamTransformation<IN1> input1, StreamTransformation<IN2> input2, String name, TwoInputStreamOperator<IN1,IN2,OUT> operator, TypeInformation<OUT> outputType, int parallelism)
TwoInputTransformation from the given inputs and operator.input1 - The first input StreamTransformationinput2 - The second input StreamTransformationname - The name of the StreamTransformation, this will be shown in Visualizations and the Logoperator - The TwoInputStreamOperatoroutputType - The type of the elements produced by this Transformationparallelism - The parallelism of this Transformationpublic StreamTransformation<IN1> getInput1()
StreamTransformation of this TwoInputTransformation.public StreamTransformation<IN2> getInput2()
StreamTransformation of this TwoInputTransformation.public TypeInformation<IN1> getInputType1()
TypeInformation for the elements from the first input.public TypeInformation<IN2> getInputType2()
TypeInformation for the elements from the first input.public TwoInputStreamOperator<IN1,IN2,OUT> getOperator()
TwoInputStreamOperator of this Transformation.public Collection<StreamTransformation<?>> getTransitivePredecessors()
StreamTransformationStreamTransformations 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<OUT>public final void setChainingStrategy(ChainingStrategy strategy)
StreamTransformationStreamTransformation.setChainingStrategy in class StreamTransformation<OUT>Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.