Uses of Class
org.apache.flink.runtime.asyncprocessing.declare.DeclarationException
Packages that use DeclarationException
Package
Description
-
Uses of DeclarationException in org.apache.flink.runtime.asyncprocessing.declare
Methods in org.apache.flink.runtime.asyncprocessing.declare that throw DeclarationExceptionModifier and TypeMethodDescription<T,U, V> NamedBiFunction<T, U, V> DeclarationContext.declare(String name, org.apache.flink.util.function.BiFunctionWithException<T, U, V, ? extends Exception> callback) Declare a callback with a name.<T,V> NamedFunction<T, V> DeclarationContext.declare(String name, org.apache.flink.util.function.FunctionWithException<T, V, ? extends Exception> callback) Declare a callback with a name.<T> NamedConsumer<T>DeclarationContext.declare(String name, org.apache.flink.util.function.ThrowingConsumer<T, ? extends Exception> callback) Declare a callback with a name.<T,U, V> NamedBiFunction<T, U, V> DeclarationContext.declare(org.apache.flink.util.function.BiFunctionWithException<T, U, V, ? extends Exception> callback) Declare a callback with an automatically assigned name.<T,V> NamedFunction<T, V> DeclarationContext.declare(org.apache.flink.util.function.FunctionWithException<T, V, ? extends Exception> callback) Declare a callback with an automatically assigned name.<T> NamedConsumer<T>DeclarationContext.declare(org.apache.flink.util.function.ThrowingConsumer<T, ? extends Exception> callback) Declare a callback with an automatically assigned name.<IN> DeclarationChain<IN>.DeclarationStage<IN>DeclarationContext.declareChain()Declaring a processing in chain-style.<T> ContextVariable<T>DeclarationContext.declareVariable(Supplier<T> initializer) Declare a variable that will keep value across callback with same context.<T> DeclaredVariable<T>DeclarationContext.declareVariable(org.apache.flink.api.common.typeutils.TypeSerializer<T> serializer, String name, Supplier<T> initialValue) Declare a variable that will keep value across callback with same context.DeclarationChain.DeclarationStage.finish()DeclarationChain.firstStage()DeclarationChain.DeclarationStage.thenAccept(org.apache.flink.util.function.ThrowingConsumer<T, Exception> action) <U> DeclarationChain<IN>.DeclarationStage<U>DeclarationChain.DeclarationStage.thenCompose(org.apache.flink.util.function.FunctionWithException<T, org.apache.flink.api.common.state.v2.StateFuture<U>, Exception> action) -
Uses of DeclarationException in org.apache.flink.runtime.asyncprocessing.functions
Methods in org.apache.flink.runtime.asyncprocessing.functions that throw DeclarationExceptionModifier and TypeMethodDescriptionDeclaringAsyncKeyedProcessFunction.declareOnTimer(DeclarationContext context, KeyedProcessFunction<K, I, O>.OnTimerContext ctx, org.apache.flink.util.Collector<O> out) Declare a procedure which is called when a timer set usingTimerServicefires.DeclaringAsyncKeyedProcessFunction.declareProcess(DeclarationContext context, KeyedProcessFunction<K, I, O>.Context ctx, org.apache.flink.util.Collector<O> out) Declare a process for one element from the input stream.