Class ConsumerEvent
java.lang.Object
java.util.EventObject
com.sun.messaging.jms.notification.Event
com.sun.messaging.jms.notification.ConsumerEvent
- All Implemented Interfaces:
Serializable
MQ Consumer Event.
- Since:
- 4.5
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
No consumer event codestatic final String
Consumer ready event codeFields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionConsumerEvent
(Destination dest, Connection conn, String evCode, String evMessage) Construct a MQ consumer event. -
Method Summary
Modifier and TypeMethodDescriptionGet the broker's address that sent the event.Get the connection on which the event was received.Get the registered destination on which the event was occurred.Methods inherited from class com.sun.messaging.jms.notification.Event
getEventCode, getEventMessage, toString
Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
CONSUMER_READY
Consumer ready event code- See Also:
-
CONSUMER_NOT_READY
No consumer event code- See Also:
-
-
Constructor Details
-
ConsumerEvent
Construct a MQ consumer event.dest
is theDestination
object that was passed inConnection.setConsumerEventListener(com.sun.messaging.Destination, com.sun.messaging.jms.notification.EventListener)
and is what will be returned bygetDestination()
conn
is theConnection
on which this event was received and is what will be returned bygetConnection()
evCode
is what will be returned byEvent.getEventCode()
which can be eitherCONSUMER_READY
orCONSUMER_NOT_READY
evMessage
is a description of theevCode
and is what will be returned byEvent.getEventMessage()
- Parameters:
dest
- the destination on which the event occurred.conn
- the connection on which the event was receivedevCode
- the event code that represents this event object.evMessage
- the event message that describes this event object.
-
-
Method Details
-
getConnection
Get the connection on which the event was received.- Returns:
- the connection on which the event was received.
-
getBrokerAddress
Get the broker's address that sent the event.- Returns:
- the broker's address that sent the event
-
getDestination
Get the registered destination on which the event was occurred.- Returns:
- the registered destination on which the event was occurred.
-