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 ConsumerIdget(String groupId)Map<String,String>getGroups()StringgetType()voidput(String groupId, ConsumerId consumerId)voidremoveAll()MessageGroupSetremoveConsumer(ConsumerId consumerId)ConsumerIdremoveGroup(String groupId)voidsetDestination(Destination destination)
-
-
-
Method Detail
-
put
void put(String groupId, ConsumerId consumerId)
-
get
ConsumerId get(String groupId)
-
removeGroup
ConsumerId removeGroup(String groupId)
-
removeConsumer
MessageGroupSet removeConsumer(ConsumerId consumerId)
-
removeAll
void removeAll()
-
getType
String getType()
-
setDestination
void setDestination(Destination destination)
-
-