Package com.sleepycat.je.rep.elections.Proposer

Examples of com.sleepycat.je.rep.elections.Proposer.WinningProposal


        synchronized (this) {
            if ((currentProposal == null) || (currentValue == null)) {
                return;
            }
            winningProposal =
                new WinningProposal(currentProposal, currentValue, null);
        }

        final RepImpl repImpl = (RepImpl)envImpl;
        if (repImpl == null) {
            return;
View Full Code Here


        Proposal proposal =
            new TimebasedProposalGenerator().nextProposal();
        elections.getLearner();
        Learner.informLearners
            (group.getLearnerSockets(),
             new WinningProposal(proposal, newMaster, null),
             elections.getProtocol(),
             elections.getThreadPool(),
             elections.getLogger(),
             repImpl,
             null);
View Full Code Here

TOP

Related Classes of com.sleepycat.je.rep.elections.Proposer.WinningProposal

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.