Interface OrchestraAction

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface OrchestraAction
Extension point for an asynchronous event action.
  • Method Summary

    Modifier and Type
    Method
    Description
    Performs the action without blocking the caller.
  • Method Details

    • execute

      CompletionStage<Void> execute(ActionContext context)
      Performs the action without blocking the caller.
      Parameters:
      context - immutable action context
      Returns:
      stage completed successfully, or exceptionally on failure