Package org.lilyproject.util.zookeeper

Examples of org.lilyproject.util.zookeeper.LeaderElection


        this.pluginRegistry = pluginRegistry;
    }

    @PostConstruct
    public void start() throws LeaderElectionSetupException, IOException, InterruptedException, KeeperException {
        leaderElection = new LeaderElection(zk, "Repository Master", "/lily/repositorymodel/masters",
                new MyLeaderElectionCallback());

        if (pluginRegistry != null) {
            pluginRegistry.setPluginUser(RepositoryMasterHook.class, this);
        }
View Full Code Here


        this.tableManager = tableManager;
    }

    public void start() throws LeaderElectionSetupException, IOException, InterruptedException, KeeperException {
        String electionPath = "/lily/repository/blobincubatormonitor";
        leaderElection = new LeaderElection(zk, "Blob Incubator Monitor",
                electionPath, new MyLeaderElectionCallback(this));
    }
View Full Code Here

TOP

Related Classes of org.lilyproject.util.zookeeper.LeaderElection

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.