Examples of PendingSubscriberMessageStoragePolicy


Examples of org.apache.activemq.broker.region.policy.PendingSubscriberMessageStoragePolicy

    public void testTopicConfiguration() throws Exception {
        super.topic = true;
        ActiveMQDestination destination = (ActiveMQDestination) createDestination("org.apache.foo");
        PolicyEntry entry = broker.getDestinationPolicy().getEntryFor(destination);
        PendingSubscriberMessageStoragePolicy policy = entry.getPendingSubscriberPolicy();
        assertNotNull(policy);
        assertFalse(entry.isProducerFlowControl());
        assertTrue(entry.getMemoryLimit()==(1024*1024));
        assertTrue("subscriberPolicy is: " + policy, policy instanceof VMPendingSubscriberMessageStoragePolicy);
    }
View Full Code Here

Examples of org.apache.activemq.broker.region.policy.PendingSubscriberMessageStoragePolicy

    public void testTopicConfiguration() throws Exception {
        super.topic = true;
        ActiveMQDestination destination = (ActiveMQDestination) createDestination("org.apache.foo");
        PolicyEntry entry = broker.getDestinationPolicy().getEntryFor(destination);
        PendingSubscriberMessageStoragePolicy policy = entry.getPendingSubscriberPolicy();
        assertNotNull(policy);
        assertFalse(entry.isProducerFlowControl());
        assertTrue(entry.getMemoryLimit()==(1024*1024));
        assertTrue("subscriberPolicy is: " + policy, policy instanceof VMPendingSubscriberMessageStoragePolicy);
    }
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.