Interface MessageGroupMap
-
- All Known Implementing Classes:
CachedMessageGroupMap
,MessageGroupHashBucket
,SimpleMessageGroupMap
public interface MessageGroupMap
Represents a map of JMSXGroupID values to consumer IDs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConsumerId
get(String groupId)
Map<String,String>
getGroups()
String
getType()
void
put(String groupId, ConsumerId consumerId)
void
removeAll()
MessageGroupSet
removeConsumer(ConsumerId consumerId)
ConsumerId
removeGroup(String groupId)
void
setDestination(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)
-
-