Uses of Class
org.apache.flink.runtime.asyncprocessing.RecordContext
-
-
Uses of RecordContext in org.apache.flink.runtime.asyncprocessing
Fields in org.apache.flink.runtime.asyncprocessing declared as RecordContext Modifier and Type Field Description protected RecordContext<K>AsyncRequest. contextThe record context of this request.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>AsyncExecutionController. buildContext(Object record, K key, boolean inherit)Build a new context based on record and key.RecordContext<K>AsyncExecutionController. getCurrentContext()RecordContext<K>AsyncRequest. getRecordContext()Methods in org.apache.flink.runtime.asyncprocessing with parameters of type RecordContext Modifier and Type Method Description <OUT> org.apache.flink.core.asyncprocessing.InternalAsyncFuture<OUT>AsyncFutureFactory. 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.voidAsyncExecutionController.SwitchContextListener. switchContext(RecordContext<K> context)Constructors in org.apache.flink.runtime.asyncprocessing with parameters of type RecordContext Constructor Description AsyncRequest(RecordContext<K> context, boolean sync, org.apache.flink.core.asyncprocessing.InternalAsyncFuture asyncFuture)RunnableTask(RecordContext<K> context, boolean sync, org.apache.flink.core.asyncprocessing.InternalAsyncFuture<RET> asyncFuture, org.apache.flink.util.function.CheckedSupplier<RET> runnable)StateRequest(org.apache.flink.api.common.state.v2.State state, StateRequestType type, boolean sync, IN payload, org.apache.flink.core.asyncprocessing.InternalAsyncFuture<OUT> stateFuture, RecordContext<K> context)SyncPointRequest(RecordContext<K> context, org.apache.flink.core.asyncprocessing.InternalAsyncFuture<Void> stateFuture)Constructor parameters in org.apache.flink.runtime.asyncprocessing with type arguments of type RecordContext Constructor Description RecordContext(Object record, K key, Consumer<RecordContext<K>> disposer, int keyGroup, EpochManager.Epoch epoch, int variableCount)RecordContext(Object record, K key, Consumer<RecordContext<K>> disposer, int keyGroup, EpochManager.Epoch epoch, int variableCount, int priority)RecordContext(Object record, K key, Consumer<RecordContext<K>> disposer, int keyGroup, EpochManager.Epoch epoch, AtomicReferenceArray<Object> variables, int priority) -
Uses of RecordContext in org.apache.flink.runtime.asyncprocessing.declare
Methods in org.apache.flink.runtime.asyncprocessing.declare with parameters of type RecordContext Modifier and Type Method Description voidDeclarationManager. setCurrentContext(RecordContext<?> currentContext) -
Uses of RecordContext in org.apache.flink.runtime.asyncprocessing.operators
Fields in org.apache.flink.runtime.asyncprocessing.operators declared as RecordContext Modifier and Type Field Description protected RecordContextAbstractAsyncKeyOrderedStreamOperator. currentProcessingContextMethods in org.apache.flink.runtime.asyncprocessing.operators that return RecordContext Modifier and Type Method Description RecordContextAbstractAsyncStateStreamOperatorV2. getCurrentProcessingContext() -
Uses of RecordContext in org.apache.flink.runtime.state
Methods in org.apache.flink.runtime.state with parameters of type RecordContext Modifier and Type Method Description default voidAsyncKeyedStateBackend. switchContext(RecordContext<K> context)By default, a state backend does nothing when a key is switched in async processing. -
Uses of RecordContext in org.apache.flink.runtime.state.v2.adaptor
Methods in org.apache.flink.runtime.state.v2.adaptor with parameters of type RecordContext Modifier and Type Method Description voidAsyncKeyedStateBackendAdaptor. switchContext(RecordContext<K> context)
-