Uses of Class
org.apache.flink.runtime.asyncprocessing.declare.DeclarationException
-
Packages that use DeclarationException Package Description org.apache.flink.runtime.asyncprocessing.declare org.apache.flink.runtime.asyncprocessing.functions -
-
Uses of DeclarationException in org.apache.flink.runtime.asyncprocessing.declare
Methods in org.apache.flink.runtime.asyncprocessing.declare that throw DeclarationException Modifier and Type Method Description <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.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<IN>DeclarationChain.DeclarationStage. finish()DeclarationChain.DeclarationStage<IN>DeclarationChain. firstStage()DeclarationChain.DeclarationStage<Void>DeclarationChain.DeclarationStage. thenAccept(org.apache.flink.util.function.ThrowingConsumer<T,Exception> action)<U> DeclarationChain.DeclarationStage<U>DeclarationChain.DeclarationStage. thenCompose(org.apache.flink.util.function.FunctionWithException<T,org.apache.flink.api.common.state.v2.StateFuture<U>,Exception> action)DeclarationChain.DeclarationStage<T>DeclarationChain.DeclarationStage. withName(String name) -
Uses of DeclarationException in org.apache.flink.runtime.asyncprocessing.functions
Methods in org.apache.flink.runtime.asyncprocessing.functions that throw DeclarationException Modifier and Type Method Description org.apache.flink.util.function.ThrowingConsumer<Long,Exception>DeclaringAsyncKeyedCoProcessFunction. declareOnTimer(DeclarationContext context, KeyedCoProcessFunction.OnTimerContext ctx, org.apache.flink.util.Collector<OUT> out)Declare a procedure which is called when a timer set usingTimerServicefires.org.apache.flink.util.function.ThrowingConsumer<Long,Exception>DeclaringAsyncKeyedProcessFunction. declareOnTimer(DeclarationContext context, KeyedProcessFunction.OnTimerContext ctx, org.apache.flink.util.Collector<O> out)Declare a procedure which is called when a timer set usingTimerServicefires.abstract org.apache.flink.util.function.ThrowingConsumer<I,Exception>DeclaringAsyncKeyedProcessFunction. declareProcess(DeclarationContext context, KeyedProcessFunction.Context ctx, org.apache.flink.util.Collector<O> out)Declare a process for one element from the input stream.abstract org.apache.flink.util.function.ThrowingConsumer<IN1,Exception>DeclaringAsyncKeyedCoProcessFunction. declareProcess1(DeclarationContext context, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)Declare a process for one element from the first of the connected streams.abstract org.apache.flink.util.function.ThrowingConsumer<IN2,Exception>DeclaringAsyncKeyedCoProcessFunction. declareProcess2(DeclarationContext context, KeyedCoProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)Declare a process for one element from the second of the connected streams.
-