Occurs after a new node has joined the cluster.

Namespace: Alachisoft.NCache.Web.Caching
Assembly: Alachisoft.NCache.Web (in Alachisoft.NCache.Web.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
public virtual event MemberJoinedCallback MemberJoined
Visual Basic
Public Overridable Event MemberJoined As MemberJoinedCallback
Visual C++
public:
virtual  event MemberJoinedCallback^ MemberJoined {
	void add (MemberJoinedCallback^ value);
	void remove (MemberJoinedCallback^ value);
}

Remarks

You can use this event to perform the tasks when a new node joins the cluster.

This callback is invoked every time a node joins the cluster. As part of the callback you receive the port at which the new node accepts the remote client connections.

For more information on how to use this callback see the documentation for MemberJoinedCallback.

See Also