<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) |
|