Delivery Mode


Type:
Enumerated value of C type T_IPC_DELIVERY_MODE
Default Value:
T_IPC_DELIVERY_BEST_EFFORT
Valid Values:
  • T_IPC_DELIVERY_BEST_EFFORT
  • T_IPC_DELIVERY_ORDERED
  • T_IPC_DELIVERY_SOME
  • T_IPC_DELIVERY_ALL

The delivery mode property identifies the default delivery mode for messages of this type. The message delivery mode property controls the level of guarantee when a message is sent through a connection. When a message is created, its delivery mode is initialized to the message type delivery mode. See Delivery Mode.

The delivery mode of an outgoing message can always be set on a per-message basis, but using the message type delivery mode makes it easier to change the default delivery mode for all outgoing messages of a specific type.

Function to set value:

TipcMtSetDeliveryMode. For example:

if (!TipcMtSetDeliveryMode(mt, T_IPC_DELIVERY_ALL)) { 
  /* error */ 
} 
Function to get value:

TipcMtGetDeliveryMode. For example:

if (!TipcMtGetDeliveryMode(mt, &delivery_mode)) { 
  /* error */ 
} 

TIBCO SmartSockets™ User’s Guide
Software Release 6.8, July 2006
Copyright © TIBCO Software Inc. All rights reserved
www.tibco.com