Package com.linkedin.databus.groupleader.example.simple

Source Code of com.linkedin.databus.groupleader.example.simple.LeaderElectSimpleExample

/**
* $Id: LeaderElectSimpleExample.java 261005 2011-04-15 00:36:51Z snagaraj $ */
package com.linkedin.databus.groupleader.example.simple;
/*
*
* Copyright 2013 LinkedIn Corp. All rights reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/


import org.apache.log4j.Logger;

import com.linkedin.databus.groupleader.impl.zkclient.GroupLeadershipConnectionFactoryZkClientImpl;
import com.linkedin.databus.groupleader.pub.AcceptLeadershipCallback;
import com.linkedin.databus.groupleader.pub.GroupLeadershipConnection;
import com.linkedin.databus.groupleader.pub.GroupLeadershipConnectionFactory;
import com.linkedin.databus.groupleader.pub.GroupLeadershipSession;

/**
*
* @author Mitch Stuart
* @version $Revision: 261005 $
*/
public class LeaderElectSimpleExample
{
  private static final Logger LOG = Logger.getLogger(LeaderElectSimpleExample.class);

  /**
   * main
   */
  public static void main(String[] args)
  {
    LeaderElectSimpleExample leaderElectProto = new LeaderElectSimpleExample();
    leaderElectProto.run();
  }

  private final String _groupName;
  private final String _memberName;
  private final GroupLeadershipConnectionFactory _groupLeadershipConnFactory;
  private final GroupLeadershipConnection _groupLeadershipConn;

  /**
   * Constructor
   */
  public LeaderElectSimpleExample()
  {
    _groupName = ExampleUtils.getRequiredStringProperty("groupName", LOG);

    String memberName = System.getProperty("memberName");
    if (memberName != null && memberName.trim().isEmpty())
    {
      memberName = null;
    }

    _memberName = memberName;
    _groupLeadershipConnFactory = new GroupLeadershipConnectionFactoryZkClientImpl(
      ExampleUtils.getRequiredStringProperty("zkServerList", LOG),
      ExampleUtils.getRequiredIntProperty("sessionTimeoutMillis", LOG),
      ExampleUtils.getRequiredIntProperty("connectTimeoutMillis", LOG));
    _groupLeadershipConn = _groupLeadershipConnFactory.getConnection();
  }

  protected void run()
  {
    String baseName = "/databus2.testGroupLeaderSimple";
    LOG.info("Before joining group: groupName=" + _groupName + "; memberName=" + _memberName +
      "; leadershipInfo=" + _groupLeadershipConn.getGroupLeadershipInfo(baseName,_groupName));

    GroupLeadershipSession groupLeadershipSession = _groupLeadershipConn.joinGroup(baseName,
      _groupName, _memberName, new AcceptLeadershipCallback()
      {
        @Override
        public void doAcceptLeadership(GroupLeadershipSession groupLeadershipSession)
        {
          LOG.info("Accepting leadership: " + groupLeadershipSession);
        }
      });

    LOG.info("After joining group: " + groupLeadershipSession);

    while (true)
    {
      try
      {
        Thread.sleep(3000); // sleep is OK, this is a demo/example program
        LOG.debug(groupLeadershipSession);
      }
      catch (InterruptedException e)
      {
        Thread.currentThread().interrupt();
      }
    }
  }

}
TOP

Related Classes of com.linkedin.databus.groupleader.example.simple.LeaderElectSimpleExample

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.