Class WindowOperator.MergingWindowStateStore
java.lang.Object
org.apache.flink.runtime.state.DefaultKeyedStateStore
WindowOperator<K,IN,ACC,OUT,W>.AbstractPerWindowStateStore
org.apache.flink.streaming.runtime.operators.windowing.WindowOperator.MergingWindowStateStore
- All Implemented Interfaces:
org.apache.flink.api.common.state.KeyedStateStore
public class WindowOperator.MergingWindowStateStore
extends WindowOperator<K,IN,ACC,OUT,W>.AbstractPerWindowStateStore
Special
WindowOperator<K,IN,ACC,OUT,W extends Window>.AbstractPerWindowStateStore that doesn't allow access to per-window state.-
Field Summary
Fields inherited from class org.apache.flink.streaming.runtime.operators.windowing.WindowOperator.AbstractPerWindowStateStore
windowFields inherited from class org.apache.flink.runtime.state.DefaultKeyedStateStore
asyncKeyedStateBackend, keyedStateBackend, serializerFactory, supportKeyedStateApiSet -
Constructor Summary
ConstructorsConstructorDescriptionMergingWindowStateStore(KeyedStateBackend<?> keyedStateBackend, org.apache.flink.api.common.ExecutionConfig executionConfig) -
Method Summary
Modifier and TypeMethodDescription<IN,ACC, OUT>
org.apache.flink.api.common.state.AggregatingState<IN,OUT> getAggregatingState(org.apache.flink.api.common.state.AggregatingStateDescriptor<IN, ACC, OUT> stateProperties) <T> org.apache.flink.api.common.state.ListState<T>getListState(org.apache.flink.api.common.state.ListStateDescriptor<T> stateProperties) <UK,UV> org.apache.flink.api.common.state.MapState<UK, UV> getMapState(org.apache.flink.api.common.state.MapStateDescriptor<UK, UV> stateProperties) <T> org.apache.flink.api.common.state.ReducingState<T>getReducingState(org.apache.flink.api.common.state.ReducingStateDescriptor<T> stateProperties) <T> org.apache.flink.api.common.state.ValueState<T>getState(org.apache.flink.api.common.state.ValueStateDescriptor<T> stateProperties) Methods inherited from class org.apache.flink.runtime.state.DefaultKeyedStateStore
getAggregatingState, getListState, getMapState, getPartitionedState, getPartitionedState, getReducingState, getValueState, setSupportKeyedStateApiSetV2Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.flink.api.common.state.KeyedStateStore
getState
-
Constructor Details
-
MergingWindowStateStore
public MergingWindowStateStore(KeyedStateBackend<?> keyedStateBackend, org.apache.flink.api.common.ExecutionConfig executionConfig)
-
-
Method Details
-
getState
public <T> org.apache.flink.api.common.state.ValueState<T> getState(org.apache.flink.api.common.state.ValueStateDescriptor<T> stateProperties) - Specified by:
getStatein interfaceorg.apache.flink.api.common.state.KeyedStateStore- Overrides:
getStatein classDefaultKeyedStateStore
-
getListState
public <T> org.apache.flink.api.common.state.ListState<T> getListState(org.apache.flink.api.common.state.ListStateDescriptor<T> stateProperties) - Specified by:
getListStatein interfaceorg.apache.flink.api.common.state.KeyedStateStore- Overrides:
getListStatein classDefaultKeyedStateStore
-
getReducingState
public <T> org.apache.flink.api.common.state.ReducingState<T> getReducingState(org.apache.flink.api.common.state.ReducingStateDescriptor<T> stateProperties) - Specified by:
getReducingStatein interfaceorg.apache.flink.api.common.state.KeyedStateStore- Overrides:
getReducingStatein classDefaultKeyedStateStore
-
getAggregatingState
public <IN,ACC, org.apache.flink.api.common.state.AggregatingState<IN,OUT> OUT> getAggregatingState(org.apache.flink.api.common.state.AggregatingStateDescriptor<IN, ACC, OUT> stateProperties) - Specified by:
getAggregatingStatein interfaceorg.apache.flink.api.common.state.KeyedStateStore- Overrides:
getAggregatingStatein classDefaultKeyedStateStore
-
getMapState
public <UK,UV> org.apache.flink.api.common.state.MapState<UK,UV> getMapState(org.apache.flink.api.common.state.MapStateDescriptor<UK, UV> stateProperties) - Specified by:
getMapStatein interfaceorg.apache.flink.api.common.state.KeyedStateStore- Overrides:
getMapStatein classDefaultKeyedStateStore
-