Examples of CarbonQueueManager


Examples of org.wso2.carbon.queuing.CarbonQueueManager

     *
     * @throws QueuingException if the operation failed.
     */
    public void setQueueManager(MultitenantCarbonQueueManager queueManager)
            throws QueuingException {
        CarbonQueueManager manager = CarbonQueueManager.getInstance();
        if (manager instanceof InternalCarbonQueueManager) {
            ((InternalCarbonQueueManager)manager).setQueueManager(queueManager);
        }
        log.debug("Successfully set the Queue Manager");
    }
View Full Code Here

Examples of org.wso2.carbon.queuing.CarbonQueueManager

     * This method will remove the current multi-tenant queue manager instance.
     *
     * @throws QueuingException if the operation failed.
     */
    public void removeQueueManager() throws QueuingException {
        CarbonQueueManager manager = CarbonQueueManager.getInstance();
        if (manager instanceof InternalCarbonQueueManager) {
            ((InternalCarbonQueueManager)manager).removeQueueManager();
        }
        log.debug("Successfully removed the Queue Manager");
    }
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.