Package com.alachisoft.ncache.client
Interface MemberJoinedListener
-
public interface MemberJoinedListener
User 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 void
onMemberJoined(com.alachisoft.ncache.client.internal.communication.NodeInfo nodeInfo)
Defines a listener method for notifying applications when an item is updated in the Cache
-
-
-
Method Detail
-
onMemberJoined
void onMemberJoined(com.alachisoft.ncache.client.internal.communication.NodeInfo nodeInfo)
Defines a listener method for notifying applications when an item is updated in the Cache- 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 out-proc manner.
-
-