Package com.sun.appserv.ha.util

Examples of com.sun.appserv.ha.util.RepairManager.repair()


        for(int i=0; i<repairApps.length; i++) {
            if(ReplicationHealthChecker.isStopping()) {
                break;
            }
            RepairManager nextMgr = repairApps[i];
            nextMgr.repair(repairStartTime);
        }       
    }
   
    public void repairApps(long repairStartTime, boolean checkForStopping) {
        if (_logger.isLoggable(Level.FINEST)) {
View Full Code Here


        for(int i=0; i<repairApps.length; i++) {
            if(checkForStopping && ReplicationHealthChecker.isStopping()) {
                break;
            }
            RepairManager nextMgr = repairApps[i];
            nextMgr.repair(repairStartTime);
        }       
    }
   
    public void respondToFailure(String failedInstanceName, boolean checkForStopping) {
        if (_logger.isLoggable(Level.FINEST)) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.