AQQueueProperty prop = new AQQueueProperty();
// TODO The setMultiConsumer() is not yet available in this version of the
// aqapi.jar library.
//if (multiconsumer) prop.setMultiConsumer(true);
AQQueue queue = table.createQueue (name, prop);
queue.start();
}
public static void dropQueue(AQjmsSession session, String schema, String name) throws AQException, JMSException {
dropQueue(session, schema, "queue_" + name, /*force*/false);