Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Invoked when an IMember has joined the service.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public virtual void OnMemberJoined(
	Object sender,
	MemberEventArgs evt
)

Parameters

sender
Type: System..::.Object
IService that raised an event.
evt
Type: Tangosol.Net..::.MemberEventArgs
An event which indicates that membership has changed.

Remarks

The most critical situation arises when a number of threads are waiting for a local service restart, being blocked by a IService object synchronization monitor. Since the Joined event should be fired only once, it is called on a client thread while holding a synchronization monitor. An attempt to use other clustered service functionality during this local event notification may result in a deadlock.

See Also