Class WindowOperator.MergingWindowStateStore
- java.lang.Object
-
- org.apache.flink.runtime.state.DefaultKeyedStateStore
-
- org.apache.flink.streaming.runtime.operators.windowing.WindowOperator.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.AbstractPerWindowStateStore
SpecialWindowOperator.AbstractPerWindowStateStorethat doesn't allow access to per-window state.
-
-
Field Summary
-
Fields inherited from class org.apache.flink.streaming.runtime.operators.windowing.WindowOperator.AbstractPerWindowStateStore
window
-
Fields inherited from class org.apache.flink.runtime.state.DefaultKeyedStateStore
asyncKeyedStateBackend, keyedStateBackend, serializerFactory, supportKeyedStateApiSet
-
-
Constructor Summary
Constructors Constructor Description MergingWindowStateStore(KeyedStateBackend<?> keyedStateBackend, org.apache.flink.api.common.ExecutionConfig executionConfig)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <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, setSupportKeyedStateApiSetV2
-
-
-
-
Constructor Detail
-
MergingWindowStateStore
public MergingWindowStateStore(KeyedStateBackend<?> keyedStateBackend, org.apache.flink.api.common.ExecutionConfig executionConfig)
-
-
Method Detail
-
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,OUT> org.apache.flink.api.common.state.AggregatingState<IN,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
-
-