use of org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManagerImple in project narayana by jbosstm.
the class ATCoordinatorRecoveryModule method install.
/**
* called by the service startup code before the recovery module is added to the recovery managers
* module list
*/
public void install() {
// installed in a single thread
if (!XTSATRecoveryManagerImple.isRecoveryManagerInitialised()) {
XTSATRecoveryManager atRecoveryManager = new XTSATRecoveryManagerImple(_recoveryStore);
XTSATRecoveryManager.setRecoveryManager(atRecoveryManager);
}
Implementations.install();
}
Aggregations