Uses of Record Class
software.amazon.lambda.durable.model.DurableExecutionOutput
Packages that use DurableExecutionOutput
Package
Description
-
Uses of DurableExecutionOutput in software.amazon.lambda.durable.execution
Methods in software.amazon.lambda.durable.execution that return DurableExecutionOutputModifier and TypeMethodDescriptionstatic <I,O> DurableExecutionOutput DurableExecutor.execute(DurableExecutionInput input, com.amazonaws.services.lambda.runtime.Context lambdaContext, TypeToken<I> inputType, BiFunction<I, DurableContext, O> handler, DurableConfig config) Methods in software.amazon.lambda.durable.execution that return types with arguments of type DurableExecutionOutputModifier and TypeMethodDescriptionstatic <I,O> com.amazonaws.services.lambda.runtime.RequestHandler<DurableExecutionInput, DurableExecutionOutput> DurableExecutor.wrap(TypeToken<I> inputType, BiFunction<I, DurableContext, O> handler, DurableConfig config) Wraps a user handler in a RequestHandler that can be used by the Lambda runtime. -
Uses of DurableExecutionOutput in software.amazon.lambda.durable.model
Methods in software.amazon.lambda.durable.model that return DurableExecutionOutputModifier and TypeMethodDescriptionstatic DurableExecutionOutputDurableExecutionOutput.failure(software.amazon.awssdk.services.lambda.model.ErrorObject errorObject) Creates a failed output with the given error details.static DurableExecutionOutputDurableExecutionOutput.pending()Creates a pending output indicating the execution was suspended.static DurableExecutionOutputCreates a successful output with the given serialized result. -
Uses of DurableExecutionOutput in software.amazon.lambda.durable.testing
Methods in software.amazon.lambda.durable.testing with parameters of type DurableExecutionOutputModifier and TypeMethodDescription<O> TestResult<O>LocalMemoryExecutionClient.toTestResult(DurableExecutionOutput output) Build TestResult from current state.