SERVERCALL

The SERVERCALL enumeration constants indicate the status of server call &emdash; returned by IMessageFilter::HandleInComingCall and passed to IMessageFilter::RetryRejectedCall.

Defined in the IMessageFilter interface (msgflt.idl).

typedef enum tagSERVERCALL 
{ 
    SERVERCALL_ISHANDLED     = 0, 
    SERVERCALL_REJECTED      = 1, 
    SERVERCALL_RETRYLATER    = 2 
} SERVERCALL; 
 

Elements

SERVERCALL_ISHANDLED
The object may be able to process the call.
SERVERCALL_REJECTED
The object cannot handle the call due to an unforeseen problem, such as network unavailability.
SERVERCALL_RETRYLATER
The object cannot handle the call at this time. For example, an application might return this value when it is in a user-controlled modal state.

See Also

IMessageFilter::HandleInComingCall, IMessageFilter::RetryRejectedCall