Interface WSATRuntimeConfig.RecoveryEventListener

All Known Implementing Classes:
WSATGatewayRM, WSATRuntimeConfig.WSATRecoveryEventListener
Enclosing class:
WSATRuntimeConfig

public static interface WSATRuntimeConfig.RecoveryEventListener
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterRecovery(boolean success, boolean delegated, String instance)
    Indicate to the listener that recovery is over.
    void
    beforeRecovery(boolean delegated, String instance)
    Indicate to the listener that recovery for a specific instance is about to start.
  • Method Details

    • beforeRecovery

      void beforeRecovery(boolean delegated, String instance)
      Indicate to the listener that recovery for a specific instance is about to start.
      Parameters:
      delegated - identifies whether it is part of a delegated transaction recovery
      instance - the instance name for which transaction recovery is performed, null if unknown
    • afterRecovery

      void afterRecovery(boolean success, boolean delegated, String instance)
      Indicate to the listener that recovery is over.
      Parameters:
      success - true if the recovery operation finished successfully
      delegated - identifies whether it is part of a delegated transaction recovery
      instance - the instance name for which transaction recovery is performed, null if unknown