Click or drag to resize

NearCacheOnMemberJoined Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Invoked when an IMember has joined the service.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual void OnMemberJoined(
	Object sender,
	MemberEventArgs evt
)

Parameters

sender
Type: SystemObject
IService that raised an event.
evt
Type: Tangosol.NetMemberEventArgs
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