Java 类org.apache.zookeeper.recipes.leader.LeaderElectionSupport.EventType 实例源码

项目:https-github.com-apache-zookeeper    文件:LeaderElectionSupportTest.java   
@Test
public void testReadyOffer() throws Exception {
    final ArrayList<EventType> events = new ArrayList<EventType>();
    final CountDownLatch electedComplete = new CountDownLatch(1);

    final LeaderElectionSupport electionSupport1 = createLeaderElectionSupport();
    electionSupport1.start();
    LeaderElectionSupport electionSupport2 = createLeaderElectionSupport();
    LeaderElectionAware listener = new LeaderElectionAware() {
        boolean stoppedElectedNode = false;
        @Override
        public void onElectionEvent(EventType eventType) {
            events.add(eventType);
            if (!stoppedElectedNode
                    && eventType == EventType.DETERMINE_COMPLETE) {
                stoppedElectedNode = true;
                try {
                    // stopping the ELECTED node, so re-election will happen.
                    electionSupport1.stop();
                } catch (Exception e) {
                    logger.error("Unexpected error", e);
                }
            }
            if (eventType == EventType.ELECTED_COMPLETE) {
                electedComplete.countDown();
            }
        }
    };
    electionSupport2.addListener(listener);
    electionSupport2.start();
    // waiting for re-election.
    electedComplete.await(CONNECTION_TIMEOUT / 3, TimeUnit.MILLISECONDS);

    final ArrayList<EventType> expectedevents = new ArrayList<EventType>();
    expectedevents.add(EventType.START);
    expectedevents.add(EventType.OFFER_START);
    expectedevents.add(EventType.OFFER_COMPLETE);
    expectedevents.add(EventType.DETERMINE_START);
    expectedevents.add(EventType.DETERMINE_COMPLETE);
    expectedevents.add(EventType.DETERMINE_START);
    expectedevents.add(EventType.DETERMINE_COMPLETE);
    expectedevents.add(EventType.ELECTED_START);
    expectedevents.add(EventType.ELECTED_COMPLETE);
    Assert.assertEquals("Events has failed to executed in the order",
            expectedevents, events);
    electionSupport2.stop();
}
项目:SecureKeeper    文件:LeaderElectionSupportTest.java   
@Test
public void testReadyOffer() throws Exception {
    final ArrayList<EventType> events = new ArrayList<EventType>();
    final CountDownLatch electedComplete = new CountDownLatch(1);

    final LeaderElectionSupport electionSupport1 = createLeaderElectionSupport();
    electionSupport1.start();
    LeaderElectionSupport electionSupport2 = createLeaderElectionSupport();
    LeaderElectionAware listener = new LeaderElectionAware() {
        boolean stoppedElectedNode = false;
        @Override
        public void onElectionEvent(EventType eventType) {
            events.add(eventType);
            if (!stoppedElectedNode
                    && eventType == EventType.DETERMINE_COMPLETE) {
                stoppedElectedNode = true;
                try {
                    // stopping the ELECTED node, so re-election will happen.
                    electionSupport1.stop();
                } catch (Exception e) {
                    logger.error("Unexpected error", e);
                }
            }
            if (eventType == EventType.ELECTED_COMPLETE) {
                electedComplete.countDown();
            }
        }
    };
    electionSupport2.addListener(listener);
    electionSupport2.start();
    // waiting for re-election.
    electedComplete.await(CONNECTION_TIMEOUT / 3, TimeUnit.MILLISECONDS);

    final ArrayList<EventType> expectedevents = new ArrayList<EventType>();
    expectedevents.add(EventType.START);
    expectedevents.add(EventType.OFFER_START);
    expectedevents.add(EventType.OFFER_COMPLETE);
    expectedevents.add(EventType.DETERMINE_START);
    expectedevents.add(EventType.DETERMINE_COMPLETE);
    expectedevents.add(EventType.DETERMINE_START);
    expectedevents.add(EventType.DETERMINE_COMPLETE);
    expectedevents.add(EventType.ELECTED_START);
    expectedevents.add(EventType.ELECTED_COMPLETE);
    Assert.assertEquals("Events has failed to executed in the order",
            expectedevents, events);
    electionSupport2.stop();
}
项目:SecureKeeper    文件:LeaderElectionSupportTest.java   
@Test
public void testReadyOffer() throws Exception {
    final ArrayList<EventType> events = new ArrayList<EventType>();
    final CountDownLatch electedComplete = new CountDownLatch(1);

    final LeaderElectionSupport electionSupport1 = createLeaderElectionSupport();
    electionSupport1.start();
    LeaderElectionSupport electionSupport2 = createLeaderElectionSupport();
    LeaderElectionAware listener = new LeaderElectionAware() {
        boolean stoppedElectedNode = false;
        @Override
        public void onElectionEvent(EventType eventType) {
            events.add(eventType);
            if (!stoppedElectedNode
                    && eventType == EventType.DETERMINE_COMPLETE) {
                stoppedElectedNode = true;
                try {
                    // stopping the ELECTED node, so re-election will happen.
                    electionSupport1.stop();
                } catch (Exception e) {
                    logger.error("Unexpected error", e);
                }
            }
            if (eventType == EventType.ELECTED_COMPLETE) {
                electedComplete.countDown();
            }
        }
    };
    electionSupport2.addListener(listener);
    electionSupport2.start();
    // waiting for re-election.
    electedComplete.await(CONNECTION_TIMEOUT / 3, TimeUnit.MILLISECONDS);

    final ArrayList<EventType> expectedevents = new ArrayList<EventType>();
    expectedevents.add(EventType.START);
    expectedevents.add(EventType.OFFER_START);
    expectedevents.add(EventType.OFFER_COMPLETE);
    expectedevents.add(EventType.DETERMINE_START);
    expectedevents.add(EventType.DETERMINE_COMPLETE);
    expectedevents.add(EventType.DETERMINE_START);
    expectedevents.add(EventType.DETERMINE_COMPLETE);
    expectedevents.add(EventType.ELECTED_START);
    expectedevents.add(EventType.ELECTED_COMPLETE);
    Assert.assertEquals("Events has failed to executed in the order",
            expectedevents, events);
    electionSupport2.stop();
}
项目:fuck_zookeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:https-github.com-apache-zookeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:ZooKeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:ZooKeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:StreamProcessingInfrastructure    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:StreamProcessingInfrastructure    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:bigstreams    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:bigstreams    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:zookeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:SecureKeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:SecureKeeper    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:StreamBench    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:StreamBench    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:LoadBalanced_zk    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:LoadBalanced_zk    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:LoadBalanced_zk    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:LoadBalanced_zk    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:zookeeper-pkg    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);
项目:zookeeper-pkg    文件:LeaderElectionAware.java   
/**
 * Called during each state transition. Current, low level events are provided
 * at the beginning and end of each state. For instance, START may be followed
 * by OFFER_START, OFFER_COMPLETE, DETERMINE_START, DETERMINE_COMPLETE, and so
 * on.
 * 
 * @param eventType
 */
public void onElectionEvent(EventType eventType);