Class DeserializationFailedMapExample

java.lang.Object
software.amazon.lambda.durable.DurableHandler<GreetingRequest,String>
software.amazon.lambda.durable.examples.map.DeserializationFailedMapExample
All Implemented Interfaces:
com.amazonaws.services.lambda.runtime.RequestStreamHandler

public class DeserializationFailedMapExample extends DurableHandler<GreetingRequest,String>
Example demonstrating the map operation with the Durable Execution SDK.

This handler processes a list of names concurrently using map(), where each item runs in its own child context with full checkpoint-and-replay support.

  1. Create a list of names from the input
  2. Map over each name concurrently, applying a greeting transformation via a durable step
  3. Collect and join the results