Module org.glassfish.metro.wsit.api
Package com.sun.xml.ws.tx.dev
Interface WSATRuntimeConfig.RecoveryEventListener
- All Known Implementing Classes:
WSATRuntimeConfig.WSATRecoveryEventListener
- Enclosing class:
WSATRuntimeConfig
public static interface WSATRuntimeConfig.RecoveryEventListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterRecovery(boolean success, boolean delegated, String instance) Indicate to the listener that recovery is over.voidbeforeRecovery(boolean delegated, String instance) Indicate to the listener that recovery for a specific instance is about to start.
-
Method Details
-
beforeRecovery
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 recoveryinstance- the instance name for which transaction recovery is performed, null if unknown
-
afterRecovery
Indicate to the listener that recovery is over.- Parameters:
success-trueif the recovery operation finished successfullydelegated- identifies whether it is part of a delegated transaction recoveryinstance- the instance name for which transaction recovery is performed, null if unknown
-