Package org.apache.activemq.advisory
Class ConsumerEvent
java.lang.Object
java.util.EventObject
org.apache.activemq.advisory.ConsumerEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConsumerStartedEvent,ConsumerStoppedEvent
An event when the number of consumers on a given destination changes.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionConsumerEvent(ConsumerEventSource source, jakarta.jms.Destination destination, ConsumerId consumerId, int consumerCount) -
Method Summary
Modifier and TypeMethodDescriptionintReturns the current number of consumers active at the time this advisory was sent.jakarta.jms.Destinationabstract booleanMethods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
ConsumerEvent
public ConsumerEvent(ConsumerEventSource source, jakarta.jms.Destination destination, ConsumerId consumerId, int consumerCount)
-
-
Method Details
-
getAdvisor
-
getDestination
public jakarta.jms.Destination getDestination() -
getConsumerCount
public int getConsumerCount()Returns the current number of consumers active at the time this advisory was sent. Note that this is not the number of consumers active when the consumer started consuming. It is usually more vital to know how many consumers there are now - rather than historically how many there were when a consumer started. So if you create aConsumerListenerafter many consumers have started, you will receive a ConsumerEvent for each consumer. However thegetConsumerCount()method will always return the current active consumer count on each event. -
getConsumerId
-
isStarted
public abstract boolean isStarted()
-