Uses of Class
software.amazon.lambda.durable.StepConfig
Packages that use StepConfig
-
Uses of StepConfig in software.amazon.lambda.durable
Methods in software.amazon.lambda.durable that return StepConfigModifier and TypeMethodDescriptionStepConfig.Builder.build()Builds the StepConfig instance.WaitForCallbackConfig.stepConfig()Methods in software.amazon.lambda.durable with parameters of type StepConfigModifier and TypeMethodDescription<T> TDurableContext.step(String name, Class<T> resultType, Function<StepContext, T> func, StepConfig config) <T> TDurableContext.step(String name, Class<T> resultType, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext instead<T> TDurableContext.step(String name, TypeToken<T> typeToken, Function<StepContext, T> func, StepConfig config) <T> TDurableContext.step(String name, TypeToken<T> typeToken, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext instead<T> DurableFuture<T>DurableContext.stepAsync(String name, Class<T> resultType, Function<StepContext, T> func, StepConfig config) <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> typeToken, Function<StepContext, T> func, StepConfig config) <T> DurableFuture<T>DurableContext.stepAsync(String name, TypeToken<T> typeToken, Supplier<T> func, StepConfig config) Deprecated.use the variants accepting StepContext insteadWaitForCallbackConfig.Builder.stepConfig(StepConfig stepConfig) -
Uses of StepConfig in software.amazon.lambda.durable.operation
Constructors in software.amazon.lambda.durable.operation with parameters of type StepConfigModifierConstructorDescriptionStepOperation(String operationId, String name, Function<StepContext, T> function, TypeToken<T> resultTypeToken, StepConfig config, DurableContext durableContext)