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> voidCopyOnWriteStateMap. transform(K key, N namespace, T value, StateTransformationFunction<S,T> transformation)abstract <T> voidStateMap. transform(K key, N namespace, T value, StateTransformationFunction<S,T> transformation)Applies the givenStateTransformationFunctionto the state (1st input argument), using the given value as second input argument.<T> voidStateTable. transform(N namespace, T value, StateTransformationFunction<S,T> transformation)Applies the givenStateTransformationFunctionto the state (1st input argument), using the given value as second input argument.
-