Uses of Class
software.amazon.lambda.durable.config.StepConfig
Packages that use StepConfig
Package
Description
-
Uses of StepConfig in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable with parameters of type StepConfigModifier and TypeMethodDescriptiondefault <T> TDurableContext.step(String name, Class<T> resultType, Function<StepContext, T> func, StepConfig config) Executes a durable step with the given name and configuration, blocking until it completes.default <T> TDurableContext.step(String name, Class<T> resultType, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext insteaddefault <T> TDurableContext.step(String name, TypeToken<T> resultType, Function<StepContext, T> func, StepConfig config) Executes a durable step using aTypeTokenand configuration, blocking until it completes.default <T> TDurableContext.step(String name, TypeToken<T> resultType, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext insteaddefault <T> DurableFuture<T>DurableContext.stepAsync(String name, Class<T> resultType, Function<StepContext, T> func, StepConfig config) Asynchronously executes a durable step using custom configuration.default <T> DurableFuture<T>DurableContext.stepAsync(String name, Class<T> resultType, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext instead<T> DurableFuture<T>DurableContext.stepAsync(String name, TypeToken<T> resultType, Function<StepContext, T> func, StepConfig config) Asynchronously executes a durable step using aTypeTokenand custom configuration.default <T> DurableFuture<T>DurableContext.stepAsync(String name, TypeToken<T> resultType, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext instead -
Uses of StepConfig in software.amazon.lambda.durable.config
Methods in software.amazon.lambda.durable.config that return StepConfigModifier and TypeMethodDescriptionStepConfig.Builder.build()Builds the StepConfig instance.WaitForCallbackConfig.stepConfig()Returns the step configuration for the composite operation.Methods in software.amazon.lambda.durable.config with parameters of type StepConfigModifier and TypeMethodDescriptionWaitForCallbackConfig.Builder.stepConfig(StepConfig stepConfig) Sets the step configuration for the composite operation. -
Uses of StepConfig in software.amazon.lambda.durable.context
Methods in software.amazon.lambda.durable.context with parameters of type StepConfigModifier and TypeMethodDescription<T> DurableFuture<T>DurableContextImpl.stepAsync(String name, TypeToken<T> resultType, Function<StepContext, T> func, StepConfig config) -
Uses of StepConfig in software.amazon.lambda.durable.operation
Constructors in software.amazon.lambda.durable.operation with parameters of type StepConfigModifierConstructorDescriptionStepOperation(OperationIdentifier operationIdentifier, Function<StepContext, T> function, TypeToken<T> resultTypeToken, StepConfig config, DurableContextImpl durableContext)