Uses of Class
org.apache.flink.runtime.asyncprocessing.RecordContext
-
Packages that use RecordContext Package Description org.apache.flink.runtime.asyncprocessing -
-
Uses of RecordContext in org.apache.flink.runtime.asyncprocessing
Methods in org.apache.flink.runtime.asyncprocessing that return RecordContext Modifier and Type Method Description RecordContext<K>AsyncExecutionController. buildContext(Object record, K key)Build a new context based on record and key.RecordContext<K>StateRequest. getRecordContext()Methods in org.apache.flink.runtime.asyncprocessing with parameters of type RecordContext Modifier and Type Method Description <OUT> org.apache.flink.core.state.InternalStateFuture<OUT>StateFutureFactory. create(RecordContext<K> context)voidAsyncExecutionController. setCurrentContext(RecordContext<K> switchingContext)Each time before a code segment (callback) is about to run in mailbox (task thread), this method should be called to switch a context in AEC.Constructors in org.apache.flink.runtime.asyncprocessing with parameters of type RecordContext Constructor Description StateRequest(org.apache.flink.api.common.state.v2.State state, StateRequestType type, IN payload, org.apache.flink.core.state.InternalStateFuture<OUT> stateFuture, RecordContext<K> context)Constructor parameters in org.apache.flink.runtime.asyncprocessing with type arguments of type RecordContext Constructor Description RecordContext(Object record, K key, java.util.function.Consumer<RecordContext<K>> disposer, int keyGroup, EpochManager.Epoch epoch)
-