Package org.wso2.carbon.messagebox.queue

Examples of org.wso2.carbon.messagebox.queue.QueueManager.deleteQueue()


    public void deleteQueue(String queueName) throws MessageBoxAdminException {
        try {
            QueueManager queueManager =
                    MessageBoxHolder.getInstance().getMessageboxService().getQueueManager();
            queueManager.deleteQueue(queueName);
        } catch (MessageBoxException e) {
            throw new MessageBoxAdminException(e.getMessage());
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.