Uses of Enum
org.apache.flink.streaming.api.transformations.StreamExchangeMode
Packages that use StreamExchangeMode
Package
Description
-
Uses of StreamExchangeMode in org.apache.flink.streaming.api.graph
Methods in org.apache.flink.streaming.api.graph that return StreamExchangeModeMethods in org.apache.flink.streaming.api.graph with parameters of type StreamExchangeModeModifier and TypeMethodDescriptionvoidStreamGraph.addVirtualPartitionNode(Integer originalId, Integer virtualId, StreamPartitioner<?> partitioner, StreamExchangeMode exchangeMode) Adds a new virtual node that is used to connect a downstream vertex to an input with a certain partitioning.Constructors in org.apache.flink.streaming.api.graph with parameters of type StreamExchangeModeModifierConstructorDescriptionStreamEdge(StreamNode sourceVertex, StreamNode targetVertex, int typeNumber, long bufferTimeout, StreamPartitioner<?> outputPartitioner, org.apache.flink.util.OutputTag outputTag, StreamExchangeMode exchangeMode, int uniqueId, IntermediateDataSetID intermediateDatasetId) StreamEdge(StreamNode sourceVertex, StreamNode targetVertex, int typeNumber, StreamPartitioner<?> outputPartitioner, org.apache.flink.util.OutputTag outputTag, StreamExchangeMode exchangeMode, int uniqueId, IntermediateDataSetID intermediateDatasetId) -
Uses of StreamExchangeMode in org.apache.flink.streaming.api.transformations
Methods in org.apache.flink.streaming.api.transformations that return StreamExchangeModeModifier and TypeMethodDescriptionPartitionTransformation.getExchangeMode()Returns theStreamExchangeModeof thisPartitionTransformation.static StreamExchangeModeReturns the enum constant of this type with the specified name.static StreamExchangeMode[]StreamExchangeMode.values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.flink.streaming.api.transformations with parameters of type StreamExchangeModeModifierConstructorDescriptionPartitionTransformation(org.apache.flink.api.dag.Transformation<T> input, StreamPartitioner<T> partitioner, StreamExchangeMode exchangeMode) Creates a newPartitionTransformationfrom the given input andStreamPartitioner.