Chapter 3 Destination : tibemsDestinationType

tibemsDestinationType
Type
Purpose
Enumerated constants representing destination types.
C Declaration
typedef enum {
    TIBEMS_UNKNOWN,
    TIBEMS_QUEUE,
    TIBEMS_TOPIC
} tibemsDestinationType;
COBOL
01 TIBEMS-DESTINATION-TYPES.
   05 tibemsDestinationType PIC S9(8) BINARY.
     88 TIBEMS-UNKNOWN VALUE 0.
     88 TIBEMS-QUEUE VALUE 1.
     88 TIBEMS-TOPIC VALUE 2.
     88 TIBEMS-UNDEFINED VALUE 256.
See Also
tibemsDestination_Create on page 146
tibemsDestination_GetType on page 149