Interface TransactionalState.Action<X extends Throwable>

Type Parameters:
X - The type of exception thrown by the action.
Enclosing class:
TransactionalState

public static interface TransactionalState.Action<X extends Throwable>
A transactional action.
Author:
Rob Spoor
Since:
2.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run()
    Runs the transactional action.
  • Method Details

    • run

      void run() throws X
      Runs the transactional action.
      Throws:
      X - If the action completes with an exception.