Uses of Interface
org.apache.flink.runtime.state.StateTransformationFunction
-
Packages that use StateTransformationFunction Package Description org.apache.flink.runtime.state.heap This package contains the classes for key/value state backends that store the state on the JVM heap as objects. -
-
Uses of StateTransformationFunction in org.apache.flink.runtime.state.heap
Methods in org.apache.flink.runtime.state.heap with parameters of type StateTransformationFunction Modifier and Type Method Description <T> void
CopyOnWriteStateMap. transform(K key, N namespace, T value, StateTransformationFunction<S,T> transformation)
abstract <T> void
StateMap. transform(K key, N namespace, T value, StateTransformationFunction<S,T> transformation)
Applies the givenStateTransformationFunction
to the state (1st input argument), using the given value as second input argument.<T> void
StateTable. transform(N namespace, T value, StateTransformationFunction<S,T> transformation)
Applies the givenStateTransformationFunction
to the state (1st input argument), using the given value as second input argument.
-