Package org.wso2.carbon.messagebox.queue

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


    public void addQueue(String queueName) throws MessageBoxAdminException {
        try {
            QueueManager queueManager =
                    MessageBoxHolder.getInstance().getMessageboxService().getQueueManager();
            queueManager.addQueue(queueName, MessageBoxConstants.MB_QUEUE_CREATED_FROM_AMQP);
        } catch (MessageBoxException e) {
            throw new MessageBoxAdminException("Failed to add the queue:"+queueName, e);
        }
    }
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.