Platform SDK: Exchange 2000 Server

IExStoreSystemEvents::OnTimer

[This is preliminary documentation and subject to change.]

Called after a specific interval of time.

[Visual Basic, VBScript]
Sub OnTimer(
   pEventRegistrationURL As IExStoreEventRegistrationURL,
   lFlags As Long
   )
[C++]
HRESULT OnTimer(
   IExStoreEventRegistrationURL * pEventRegistrationURL,
   LONG lFlags
   );
[IDL]
HRESULT OnTimer(
   [in] IExStoreEventRegistrationURL * pEventRegistrationURL,
   [in] LONG lFlags
   );
pEventInfo
Is a pointer to an IExStoreEventRegistrationURL interface that can be used to obtain further information related to the event.
lFlags
Reserved for future use.

Return Value

The return call is not evaluated.

Registration Properties

To register for this event, you need to set the registration item's eventmethod property to "OnTimer" (C++ constant = EVT_ON_TIMER).

This event supports the following Registration Item properties:

See The Registration Item for more information on registration properties.

Remarks

This method is called for the time or time interval specified in the registration item.

Note   The store may not invoke this sink if the server is not running when the specified time elapses. For example, if a sink registers for notification at 11:00AM and the service goes down at 10:55AM and comes back up at 11:05AM, the sink may not be called.