Uses of Class
org.apache.flink.streaming.api.datastream.KeyedStream
Packages that use KeyedStream
-
Uses of KeyedStream in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream that return KeyedStreamModifier and TypeMethodDescriptionKeyedStream.enableAsyncState()Enable the async state processing for following keyed processing function.protected KeyedStream<T,org.apache.flink.api.java.tuple.Tuple> <K> KeyedStream<T,K> It creates a newKeyedStreamthat uses the provided key for partitioning its operator states.<K> KeyedStream<T,K> DataStream.keyBy(org.apache.flink.api.java.functions.KeySelector<T, K> key, org.apache.flink.api.common.typeinfo.TypeInformation<K> keyType) It creates a newKeyedStreamthat uses the provided key with explicit type information for partitioning its operator states.Methods in org.apache.flink.streaming.api.datastream with parameters of type KeyedStreamModifier and TypeMethodDescription<T1> KeyedStream.IntervalJoin<T,T1, KEY> KeyedStream.intervalJoin(KeyedStream<T1, KEY> otherStream) Join elements of thisKeyedStreamwith elements of anotherKeyedStreamover a time interval that can be specified withKeyedStream.IntervalJoin.between(Duration, Duration).Constructors in org.apache.flink.streaming.api.datastream with parameters of type KeyedStreamModifierConstructorDescriptionIntervalJoined(KeyedStream<IN1, KEY> left, KeyedStream<IN2, KEY> right, long lowerBound, long upperBound, boolean lowerBoundInclusive, boolean upperBoundInclusive) KeyedPartitionWindowedStream(StreamExecutionEnvironment environment, KeyedStream<T, KEY> input) WindowedStream(KeyedStream<T, K> input, WindowAssigner<? super T, W> windowAssigner)