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 TwoInputTransformation@Internal public 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, typeUsed| Constructor and Description |
|---|
TwoInputTransformation(StreamTransformation<IN1> input1,
StreamTransformation<IN2> input2,
String name,
TwoInputStreamOperator<IN1,IN2,OUT> operator,
org.apache.flink.api.common.typeinfo.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. |
org.apache.flink.api.common.typeinfo.TypeInformation<IN1> |
getInputType1()
Returns the
TypeInformation for the elements from the first input. |
org.apache.flink.api.common.typeinfo.TypeInformation<IN2> |
getInputType2()
Returns the
TypeInformation for the elements from the first input. |
TwoInputStreamOperator<IN1,IN2,OUT> |
getOperator()
Returns the
TwoInputStreamOperator of this Transformation. |
org.apache.flink.api.java.functions.KeySelector<IN1,?> |
getStateKeySelector1()
Returns the
KeySelector that must be used for partitioning keyed state in this
Operation for the first input. |
org.apache.flink.api.java.functions.KeySelector<IN2,?> |
getStateKeySelector2()
Returns the
KeySelector that must be used for partitioning keyed state in this
Operation for the second input. |
org.apache.flink.api.common.typeinfo.TypeInformation<?> |
getStateKeyType() |
Collection<StreamTransformation<?>> |
getTransitivePredecessors()
Returns all transitive predecessor
StreamTransformations of this StreamTransformation. |
void |
setChainingStrategy(ChainingStrategy strategy)
Sets the chaining strategy of this
StreamTransformation. |
void |
setStateKeySelectors(org.apache.flink.api.java.functions.KeySelector<IN1,?> stateKeySelector1,
org.apache.flink.api.java.functions.KeySelector<IN2,?> stateKeySelector2)
Sets the
KeySelectors that must be used for partitioning keyed state of
this transformation. |
void |
setStateKeyType(org.apache.flink.api.common.typeinfo.TypeInformation<?> stateKeyType) |
equals, getBufferTimeout, getId, getName, getNewNodeId, getOutputType, getParallelism, getSlotSharingGroup, getUid, hashCode, setBufferTimeout, setName, setOutputType, setParallelism, setSlotSharingGroup, setUid, toStringpublic TwoInputTransformation(StreamTransformation<IN1> input1, StreamTransformation<IN2> input2, String name, TwoInputStreamOperator<IN1,IN2,OUT> operator, org.apache.flink.api.common.typeinfo.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 org.apache.flink.api.common.typeinfo.TypeInformation<IN1> getInputType1()
TypeInformation for the elements from the first input.public org.apache.flink.api.common.typeinfo.TypeInformation<IN2> getInputType2()
TypeInformation for the elements from the first input.public TwoInputStreamOperator<IN1,IN2,OUT> getOperator()
TwoInputStreamOperator of this Transformation.public void setStateKeySelectors(org.apache.flink.api.java.functions.KeySelector<IN1,?> stateKeySelector1, org.apache.flink.api.java.functions.KeySelector<IN2,?> stateKeySelector2)
KeySelectors that must be used for partitioning keyed state of
this transformation.stateKeySelector1 - The KeySelector to set for the first inputstateKeySelector2 - The KeySelector to set for the first inputpublic org.apache.flink.api.java.functions.KeySelector<IN1,?> getStateKeySelector1()
KeySelector that must be used for partitioning keyed state in this
Operation for the first input.public org.apache.flink.api.java.functions.KeySelector<IN2,?> getStateKeySelector2()
KeySelector that must be used for partitioning keyed state in this
Operation for the second input.public void setStateKeyType(org.apache.flink.api.common.typeinfo.TypeInformation<?> stateKeyType)
public org.apache.flink.api.common.typeinfo.TypeInformation<?> getStateKeyType()
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.