MQC

System.Object
 |
 *- IBM.WMQ.MQC
public interface IBM.WMQ.MQC
extends System.Object

The MQC structure defines all the constants used by the MQI. To refer to one of these constants from within your programs, prefix the constant name with "MQC.". For example, we can set the close options for a queue as follows:

MQQueue queue;
 ...
queue.closeOptions = MQC.MQCO_DELETE; // delete the
                                      // queue when
                                      // it is closed
 ...

A full description of these constants is in the WebSphere MQ Application Programming Reference.


csq8701