Uses of Class
software.amazon.lambda.durable.DurableHandler
Packages that use DurableHandler
Package
Description
-
Uses of DurableHandler in software.amazon.lambda.durable.examples.callback
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.callbackModifier and TypeClassDescriptionclassExample demonstrating callback operations for external system integration.class -
Uses of DurableHandler in software.amazon.lambda.durable.examples.child
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.childModifier and TypeClassDescriptionclassExample demonstrating child context workflows with the Durable Execution SDK.classPerformance test example demonstrating concurrent async child contexts. -
Uses of DurableHandler in software.amazon.lambda.durable.examples.general
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.generalModifier and TypeClassDescriptionclassExample 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.classSimple example demonstrating a durable function doesn't have any durable operation -
Uses of DurableHandler in software.amazon.lambda.durable.examples.invoke
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.invokeModifier and TypeClassDescriptionclassSimple example demonstrating basic invoke execution with the Durable Execution SDK. -
Uses of DurableHandler in software.amazon.lambda.durable.examples.map
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.mapModifier and TypeClassDescriptionclassExample demonstrating advanced map features: wait operations inside branches, error handling, and early termination.classExample demonstrating the map operation with the Durable Execution SDK.classExample demonstrating the map operation with the Durable Execution SDK. -
Uses of DurableHandler in software.amazon.lambda.durable.examples.parallel
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.parallelModifier and TypeClassDescriptionclassExample demonstrating parallel branch execution with the Durable Execution SDK.classExample demonstrating parallel branch execution with the Durable Execution SDK.classExample demonstrating parallel execution with failure tolerance.classExample demonstrating parallel branches where some branches include wait operations. -
Uses of DurableHandler in software.amazon.lambda.durable.examples.step
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.stepModifier and TypeClassDescriptionclassclassPerformance test example demonstrating concurrent async steps.classSimple example demonstrating retry strategies with a flaky API.classExample demonstrating in-process retry behavior with concurrent operations.classSimple example demonstrating basic step execution with the Durable Execution SDK. -
Uses of DurableHandler in software.amazon.lambda.durable.examples.wait
Subclasses of DurableHandler in software.amazon.lambda.durable.examples.waitModifier and TypeClassDescriptionclassExample demonstrating concurrent waitForCondition operations using map.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.classExample demonstrating the waitForCondition operation. -
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.