Package com.sun.xml.ws.tx.dev
Interface WSATRuntimeConfig.RecoveryEventListener
-
- All Known Implementing Classes:
WSATGatewayRM,WSATRuntimeConfig.WSATRecoveryEventListener
- Enclosing class:
- WSATRuntimeConfig
public static interface WSATRuntimeConfig.RecoveryEventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterRecovery(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 Detail
-
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 recoveryinstance- 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-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
-
-