You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[ErrorHandlingExample](src/main/java/com/amazonaws/lambda/durable/examples/ErrorHandlingExample.java)| Handling `StepFailedException` and `StepInterruptedException`|
84
-
|[GenericTypesExample](src/main/java/com/amazonaws/lambda/durable/examples/GenericTypesExample.java)| Working with `List<T>` and `Map<K,V>`|
85
-
|[CustomConfigExample](src/main/java/com/amazonaws/lambda/durable/examples/CustomConfigExample.java)| Custom Lambda client and SerDes |
86
-
|[WaitAtLeastExample](src/main/java/com/amazonaws/lambda/durable/examples/WaitAtLeastExample.java)| Concurrent `stepAsync()` with `wait()`|
87
-
|[WaitAsyncExample](src/main/java/com/amazonaws/lambda/durable/examples/WaitAsyncExample.java)| Non-blocking `waitAsync()` with concurrent step |
88
-
|[RetryInProcessExample](src/main/java/com/amazonaws/lambda/durable/examples/RetryInProcessExample.java)| In-process retry with concurrent operations |
89
-
|[WaitAtLeastInProcessExample](src/main/java/com/amazonaws/lambda/durable/examples/WaitAtLeastInProcessExample.java)| Wait completes before async step (no suspension) |
90
-
|[ManyAsyncStepsExample](src/main/java/com/amazonaws/lambda/durable/examples/ManyAsyncStepsExample.java)| Performance test with 500 concurrent async steps |
91
-
|[SimpleMapExample](src/main/java/com/amazonaws/lambda/durable/examples/SimpleMapExample.java)| Concurrent map over a collection with durable steps |
92
-
|[WaitForConditionExample](src/main/java/software/amazon/lambda/durable/examples/WaitForConditionExample.java)| Poll a condition until met with `waitForCondition()`|
|[ErrorHandlingExample](src/main/java/software/amazon/lambda/durable/examples/general/ErrorHandlingExample.java)| Handling `StepFailedException` and `StepInterruptedException`|
84
+
|[GenericTypesExample](src/main/java/software/amazon/lambda/durable/examples/general/GenericTypesExample.java)| Working with `List<T>` and `Map<K,V>`|
85
+
|[CustomConfigExample](src/main/java/software/amazon/lambda/durable/examples/general/CustomConfigExample.java)| Custom Lambda client and SerDes |
86
+
|[WaitAtLeastExample](src/main/java/software/amazon/lambda/durable/examples/wait/WaitAtLeastExample.java)| Concurrent `stepAsync()` with `wait()`|
87
+
|[WaitAsyncExample](src/main/java/software/amazon/lambda/durable/examples/wait/WaitAsyncExample.java)| Non-blocking `waitAsync()` with concurrent step |
88
+
|[RetryInProcessExample](src/main/java/software/amazon/lambda/durable/examples/step/RetryInProcessExample.java)| In-process retry with concurrent operations |
89
+
|[WaitAtLeastInProcessExample](src/main/java/software/amazon/lambda/durable/examples/wait/WaitAtLeastInProcessExample.java)| Wait completes before async step (no suspension) |
90
+
|[ManyAsyncStepsExample](src/main/java/software/amazon/lambda/durable/examples/step/ManyAsyncStepsExample.java)| Performance test with 500 concurrent async steps |
91
+
|[SimpleMapExample](src/main/java/software/amazon/lambda/durable/examples/map/SimpleMapExample.java)| Concurrent map over a collection with durable steps |
92
+
|[WaitForConditionExample](src/main/java/software/amazon/lambda/durable/examples/wait/WaitForConditionExample.java)| Poll a condition until met with `waitForCondition()`|
93
+
|[OtelExample](src/main/java/software/amazon/lambda/durable/examples/general/OtelExample.java)| OpenTelemetry instrumentation with logging span export |
94
+
|[OtelXRayStepExample](src/main/java/software/amazon/lambda/durable/examples/otel/OtelXRayStepExample.java)| Export step spans to X-Ray through the ADOT Lambda Layer |
95
+
|[OtelXRayWaitExample](src/main/java/software/amazon/lambda/durable/examples/otel/OtelXRayWaitExample.java)| Trace a step-wait-step workflow across Lambda invocations |
96
+
|[OtelXRayMapExample](src/main/java/software/amazon/lambda/durable/examples/otel/OtelXRayMapExample.java)| Trace concurrent map operations and item steps in X-Ray |
97
+
|[OtelXRayParallelExample](src/main/java/software/amazon/lambda/durable/examples/otel/OtelXRayParallelExample.java)| Trace parallel branches and branch steps in X-Ray |
98
+
|[OtelXRayNestedContextExample](src/main/java/software/amazon/lambda/durable/examples/otel/OtelXRayNestedContextExample.java)| Trace nested child contexts and inner steps in X-Ray |
0 commit comments