1 17 package org.apache.activemq.broker.region.group; 18 19 29 public class MessageGroupHashBucketFactory implements MessageGroupMapFactory { 30 31 private int bucketCount = 1024; 32 33 public MessageGroupMap createMessageGroupMap() { 34 return new MessageGroupHashBucket(bucketCount); 35 } 36 37 public int getBucketCount() { 38 return bucketCount; 39 } 40 41 48 public void setBucketCount(int bucketCount) { 49 this.bucketCount = bucketCount; 50 } 51 52 } 53 | Popular Tags |