AppletPriority

The AppletPriority enumeration defines values for the data-transfer priorities used by the Multipoint Communication Service (MCS) domain when negotiating priorities among conference participants that are sending data on an MCS channel. Lowest values receive highest priority. If too many conference participants call the SendData method with a high priority, data that has low priority might wait indefinitely.

typedef enum
{
  APPLET_TOP_PRIORITY     = 0,
  APPLET_HIGH_PRIORITY    = 1,
  APPLET_MEDIUM_PRIORITY  = 2,
  APPLET_LOW_PRIORITY     = 3,
}
  AppletPriority;

Elements

  • APPLET_TOP_PRIORITY
    The top priority for sending data over an MCS channel.
  • APPLET_HIGH_PRIORITY
    A high priority for sending data over an MCS channel.
  • APPLET_MEDIUM_PRIORITY
    A medium priority for sending data over an MCS channel.
  • APPLET_LOW_PRIORITY
    A low priority for sending data over an MCS channel.

Requirements

**  Windows NT/2000:** Requires Windows NT 4.0 SP3 or later.
**  Windows 95/98:** Requires Windows 95 or later. Available as a redistributable for Windows 95.
**  Version:** Requires NetMeeting 3.0 or later.
**  Header:** Declared in Nmapptyp.h.

See Also

IAppletSession::SendData, IAppletSessionNotify::SendDataIndication