Package org.hive2hive.core.api.interfaces

Examples of org.hive2hive.core.api.interfaces.IH2HNode.addEventListener()


  public void eventListenerTest() {
   
    IH2HNode node = H2HNode.createNode(NetworkConfiguration.create(), FileConfiguration.createDefault());
   
    TestNetworkEventListener listener = new TestNetworkEventListener();
    node.addEventListener(listener);
   
    node.connect();
   
    assertTrue(listener.connectionSucceeded || listener.connectionFailed);
    assertTrue(!listener.disconnectionSucceeded && !listener.disconnectionFailed);
View Full Code Here

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.