Uses of Class
org.apache.flink.runtime.asyncprocessing.RecordContext
-
-
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.voidAsyncExecutionController.SwitchContextListener. switchContext(RecordContext<K> context)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, Consumer<RecordContext<K>> disposer, int keyGroup, EpochManager.Epoch epoch) -
Uses of RecordContext in org.apache.flink.runtime.asyncprocessing.operators
Methods 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)
-