com.jniwrapper.win32.com
Class ServerCall

java.lang.Object
  extended bycom.jniwrapper.util.EnumItem
      extended bycom.jniwrapper.win32.com.ServerCall

public final class ServerCall
extends EnumItem

The ServerCall enumeration constants indicate the status of server call returned by the IMessageFilter.handleInComingCall method and passed to the IMessageFilter.retryRejectedCall method.


Field Summary
static ServerCall CALLTYPE_TOPLEVEL
          The object may be able to process the call.
static ServerCall SERVERCALL_REJECTED
          The object cannot handle the call due to an unforeseen problem, such as network unavailability.
static ServerCall SERVERCALL_RETRYLATER
          The object cannot handle the call at this time.
 
Methods inherited from class com.jniwrapper.util.EnumItem
equals, getLongValue, getValue, hashCode, isOneOf
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CALLTYPE_TOPLEVEL

public static final ServerCall CALLTYPE_TOPLEVEL
The object may be able to process the call.


SERVERCALL_REJECTED

public static final ServerCall SERVERCALL_REJECTED
The object cannot handle the call due to an unforeseen problem, such as network unavailability.


SERVERCALL_RETRYLATER

public static final ServerCall 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.