Interface MessageGroupMap
-
- All Known Implementing Classes:
CachedMessageGroupMap,MessageGroupHashBucket,SimpleMessageGroupMap
public interface MessageGroupMapRepresents a map of JMSXGroupID values to consumer IDs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.activemq.command.ConsumerIdget(String groupId)Map<String,String>getGroups()StringgetType()voidput(String groupId, org.apache.activemq.command.ConsumerId consumerId)voidremoveAll()MessageGroupSetremoveConsumer(org.apache.activemq.command.ConsumerId consumerId)org.apache.activemq.command.ConsumerIdremoveGroup(String groupId)voidsetDestination(Destination destination)
-
-
-
Method Detail
-
put
void put(String groupId, org.apache.activemq.command.ConsumerId consumerId)
-
get
org.apache.activemq.command.ConsumerId get(String groupId)
-
removeGroup
org.apache.activemq.command.ConsumerId removeGroup(String groupId)
-
removeConsumer
MessageGroupSet removeConsumer(org.apache.activemq.command.ConsumerId consumerId)
-
removeAll
void removeAll()
-
getType
String getType()
-
setDestination
void setDestination(Destination destination)
-
-