Platform SDK: Exchange 2000 Server

OnPostFinal Method

[This is preliminary documentation and subject to change.]

Called by the NNTP event source on bound OnPostFinal event sinks after a message or news feed has been posted by the NNTP service.

[Visual Basic]
Sub OnPostFinal(ByVal Msg as CDO.Message, EventStatus as CdoEventStatus)
[C++]
HRESULT OnPostFinal(IMessage* Msg, CdoEventStatus* EventStatus);
[IDL]
HRESULT OnPostFinal([in] IMessage* Msg, [in,out] CdoEventStatus* EventStatus);
Msg
The IMessage interface on a Message object holding the message that arrived.
EventStatus
On return, the status of the event. The event sink signals to the source whether to continue notifying subsequent event sinks, or to stop and return. The CdoEventStatus enumeration in the type library contains the enumerated values for this argument.

Remarks

The OnPostFinal event for the NNTP service is synchronous, meaning that the event dispatcher thread is blocked for the duration of time required for either all bound event sinks to be created (if necessary) and executed, or until a sink preemptively stops event notifications by returning the EventStatus parameter with the value cdoSkipRemainingSinks.

See Also

SMTP/NNTP Transport Event Sinks with CDO

INNTPOnPost Interface

INNTPOnPostEarly Interface

CdoEventStatus Enum

IMessage Interface