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

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


    public void testBucketGroupConfiguration() throws Exception {
        doTestGroupConfiguration("bucket", MessageGroupHashBucket.class);
    }

    public void testBucketGroupConfigurationWithBucketCount() throws Exception {
        MessageGroupHashBucket result = (MessageGroupHashBucket) doTestGroupConfiguration("bucket?bucketCount=2", MessageGroupHashBucket.class);
        assertEquals(2,result.getBucketCount());
    }
View Full Code Here

TOP

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

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.