Uses of Interface
org.apache.flink.api.common.state.ListState
-
Packages that use ListState Package Description org.apache.flink.api.common.functions org.apache.flink.api.common.functions.util org.apache.flink.api.common.state -
-
Uses of ListState in org.apache.flink.api.common.functions
Methods in org.apache.flink.api.common.functions that return ListState Modifier and Type Method Description <T> ListState<T>RuntimeContext. getListState(ListStateDescriptor<T> stateProperties)Gets a handle to the system's key/value list state. -
Uses of ListState in org.apache.flink.api.common.functions.util
Methods in org.apache.flink.api.common.functions.util that return ListState Modifier and Type Method Description <T> ListState<T>AbstractRuntimeUDFContext. getListState(ListStateDescriptor<T> stateProperties) -
Uses of ListState in org.apache.flink.api.common.state
Methods in org.apache.flink.api.common.state that return ListState Modifier and Type Method Description <T> ListState<T>KeyedStateStore. getListState(ListStateDescriptor<T> stateProperties)Gets a handle to the system's key/value list state.<S> ListState<S>OperatorStateStore. getListState(ListStateDescriptor<S> stateDescriptor)Creates (or restores) a list state.<S> ListState<S>OperatorStateStore. getUnionListState(ListStateDescriptor<S> stateDescriptor)Creates (or restores) a list state.
-