如何重置队列?在开始将消息写入队列之前,我想清除队列中的所有消息。有什么方法可以在不拨打电话的情况下重置?
MQQueueManager mqQMgr = new MQQueueManager(mqQueueManager);
MQQueue queue = mqQMgr.AccessQueue(getMessageQueue, MQC.MQOO_OUTPUT | MQC.MQOO_INPUT_SHARED | MQC.MQOO_INQUIRE);
MQMessage 对象中有一个 .clearmessages,但我只能在调用 get 方法时访问它,我正在寻找一种方法来清除队列中的现有消息,然后才能将新消息放入队列。