Uses of Class
software.amazon.lambda.durable.DurableHandler
Packages that use DurableHandler
-
Uses of DurableHandler in software.amazon.lambda.durable.examples
Subclasses of DurableHandler in software.amazon.lambda.durable.examplesModifier and TypeClassDescriptionclassExample demonstrating callback operations for external system integration.classExample demonstrating child context workflows with the Durable Execution SDK.classExample demonstrating custom configuration with both custom HTTP client and custom SerDes.classExample demonstrating custom polling strategy configuration.classExample demonstrating error handling patterns with the Durable Execution SDK.classExample demonstrating a durable Lambda function that uses generic types in input and output.classExample demonstrating TypeToken support for complex generic types.classExample demonstrating DurableLogger usage for structured logging with execution context.classPerformance test example demonstrating concurrent async child contexts.classPerformance test example demonstrating concurrent async steps.classSimple example demonstrating a durable function doesn't have any durable operationclassSimple example demonstrating retry strategies with a flaky API.classExample demonstrating in-process retry behavior with concurrent operations.classSimple example demonstrating basic invoke execution with the Durable Execution SDK.classSimple example demonstrating basic step execution with the Durable Execution SDK.classExample demonstrating non-blocking wait with waitAsync().classExample demonstrating concurrent stepAsync() with wait() operations.classExample demonstrating concurrent stepAsync() with wait() operations where no suspension occurs.classExample demonstrating step execution with wait operations. -
Uses of DurableHandler in software.amazon.lambda.durable.testing
Methods in software.amazon.lambda.durable.testing with parameters of type DurableHandlerModifier and TypeMethodDescriptionstatic <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(Class<I> inputType, DurableHandler<I, O> handler) Creates a LocalDurableTestRunner from a DurableHandler instance, automatically extracting the configuration.static <I,O> LocalDurableTestRunner<I, O> LocalDurableTestRunner.create(TypeToken<I> inputType, DurableHandler<I, O> handler) Creates a LocalDurableTestRunner from a DurableHandler instance, automatically extracting the configuration.