Class RetryInProcessExample

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

public class RetryInProcessExample extends DurableHandler<Object,String>
Example demonstrating in-process retry behavior with concurrent operations.

This example shows:

  • An async step that fails and retries while other work continues
  • A long-running synchronous step that keeps the process busy
  • Retry happens in-process without suspension because main thread is active
  • Constructor Details

    • RetryInProcessExample

      public RetryInProcessExample()
  • Method Details