Uses of Class
software.amazon.lambda.durable.config.WaitForCallbackConfig
Packages that use WaitForCallbackConfig
Package
Description
-
Uses of WaitForCallbackConfig in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable with parameters of type WaitForCallbackConfigModifier and TypeMethodDescriptiondefault <T> TDurableContext.waitForCallback(String name, Class<T> resultType, BiConsumer<String, StepContext> func, WaitForCallbackConfig waitForCallbackConfig) Executes a submitter and waits for an external callback with custom configuration, blocking until complete.default <T> TDurableContext.waitForCallback(String name, TypeToken<T> resultType, BiConsumer<String, StepContext> func, WaitForCallbackConfig waitForCallbackConfig) Executes a submitter and waits for an external callback using aTypeTokenand custom configuration.default <T> DurableFuture<T>DurableContext.waitForCallbackAsync(String name, Class<T> resultType, BiConsumer<String, StepContext> func, WaitForCallbackConfig waitForCallbackConfig) Asynchronously executes a submitter and waits for an external callback with custom configuration.<T> DurableFuture<T>DurableContext.waitForCallbackAsync(String name, TypeToken<T> resultType, BiConsumer<String, StepContext> func, WaitForCallbackConfig waitForCallbackConfig) Asynchronously executes a submitter and waits for an external callback using aTypeTokenand custom configuration. -
Uses of WaitForCallbackConfig in software.amazon.lambda.durable.config
Methods in software.amazon.lambda.durable.config that return WaitForCallbackConfigModifier and TypeMethodDescriptionWaitForCallbackConfig.Builder.build()Builds the WaitForCallbackConfig instance. -
Uses of WaitForCallbackConfig in software.amazon.lambda.durable.context
Methods in software.amazon.lambda.durable.context with parameters of type WaitForCallbackConfigModifier and TypeMethodDescription<T> DurableFuture<T>DurableContextImpl.waitForCallbackAsync(String name, TypeToken<T> resultType, BiConsumer<String, StepContext> func, WaitForCallbackConfig waitForCallbackConfig)