Package com.alachisoft.ncache.client
Interface MemberJoinedListener
-
public interface MemberJoinedListenerUser needs to implement this interface in order to receive member joined notifications.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonMemberJoined​(com.alachisoft.ncache.client.internal.communication.NodeInfo nodeInfo)Defines a listener method for notifying applications when a new node joins the cluster.
-
-
-
Method Detail
-
onMemberJoined
void onMemberJoined​(com.alachisoft.ncache.client.internal.communication.NodeInfo nodeInfo)
Defines a listener method for notifying applications when a new node joins the cluster.- Parameters:
nodeInfo- The information of the newly joined member. It describes the member in terms of the IP Address and Server port. The Server port is required when a client wants to connect to this server node for using a cache in OutProc manner.
-
-