|  | 
Called by the server at each heartbeat period.
Syntax
HRESULT OnHeartBeat ( );
Parameters
None.
Return Values
This method must return S_OK.
Remarks
The following code illustrates a skeletal implementation of the INSSEventNotification::OnHeartBeat method:
HRESULT
CEventNotification::OnHeartBeat() 
{
  // Increment counter for each client
  return( S_OK );
}
See Also
INSSEventNotification::Initialize
[Previous][Next]