1 5 package com.tc.cluster; 6 7 import java.util.EventListener ; 8 9 public interface ClusterEventListener extends EventListener { 10 11 void nodeConnected(String nodeId); 12 13 void nodeDisconnected(String nodeId); 14 15 void thisNodeDisconnected(String thisNodeId); 16 17 void thisNodeConnected(String thisNodeId, String [] nodesCurrentlyInCluster); 18 } 19 | Popular Tags |