GroupStateChangedEventHandler
Delegate
Visual Basic
Public Delegate SubGroupStateChangedEventHandler(
ByVal monitor As Object,
ByValgroupStateChangedEventArgs
As GroupStateChangedEventArgs )
C#
public delegate voidGroupStateChangedEventHandler(
object monitor,
GroupStateChangedEventArgsgroupStateChangedEventArgs);
Purpose
Process fault tolerance events for a monitor.
|
Parameter |
Description |
|
This parameter receives the monitor object. |
|
This parameter receives the closure and the number of active group members. |
Implementation
Rendezvous fault tolerance software queues a monitor event whenever the number of active members in the group changes. Programs can define this delegate to handle such events, and register it in a call to FTGroupMonitor.
A program need not be a member of a group in order to monitor that group. Programs that do not monitor need not define a monitor callback method.
See Also