Package org.apache.activemq.broker.region.group

Examples of org.apache.activemq.broker.region.group.CachedMessageGroupMap


    public void testCachedGroupConfiguration() throws Exception {
        doTestGroupConfiguration("cached",CachedMessageGroupMap.class);
    }

    public void testCachedGroupConfigurationWithCacheSize() throws Exception {
        CachedMessageGroupMap result = (CachedMessageGroupMap) doTestGroupConfiguration("cached?cacheSize=10",CachedMessageGroupMap.class);
        assertEquals(10,result.getMaximumCacheSize());

    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.broker.region.group.CachedMessageGroupMap

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.