Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 2 Messages : tibemsDeliveryMode

tibemsDeliveryMode
Type
Purpose
Define delivery mode constants.
C Declaration
typedef enum {
    TIBEMS_NON_PERSISTENT,
    TIBEMS_PERSISTENT,
    TIBEMS_RELIABLE
} tibemsDeliveryMode;
COBOL
01 TIBEMS-DELIVERY-MODES.
   05 tibemsDeliveryMode          PIC S9(8) BINARY.
      88 TIBEMS-NON-PERSISTENT    VALUE 1.
      88 TIBEMS-PERSISTENT        VALUE 2.
      88 TIBEMS-RELIABLE          VALUE 22.
 
Reliable delivery mode is a TIBCO proprietary extension that offers increased performance of the message producers. See also RELIABLE_DELIVERY in TIBCO Enterprise Message Service User’s Guide.

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved