Package com.sleepycat.je.rep

Examples of com.sleepycat.je.rep.MasterReplicaTransitionException


        /*
         * [#19177] We don't let a master transition to a replica state without
         * an environment shutdown. See explanation in FeederManager.
         */
        throw new MasterReplicaTransitionException(repImpl, syncEx);
    }
View Full Code Here


             * ReplayTxn.Another option is to permit a state conversion without
             * recovery when there are no active transactions. The added
             * complexity did not seem worth the benefit of reducing the need
             * to reopen the environment handle in limited situations. [#19177]
             */
            throw new MasterReplicaTransitionException(repNode.getRepImpl(), e);
        } catch (InterruptedException e) {
            if (this.repNodeShutdownException != null) {

                /*
                 * The interrupt was issued to propagate an exception from one
View Full Code Here

TOP

Related Classes of com.sleepycat.je.rep.MasterReplicaTransitionException

Copyright © 2018 www.massapicom. 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.