Package org.apache.activemq.broker.region

Examples of org.apache.activemq.broker.region.TopicSubscription


    /**
     *
     */
    public void setMaximumPendingQueueSize(int max) {
        TopicSubscription topicSubscription = getTopicSubscription();
        if (topicSubscription != null) {
            topicSubscription.setMaximumPendingMessages(max);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.broker.region.TopicSubscription

Copyright © 2018 www.massapicom. 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.