|
|||||||||
| Home >> All >> org >> activemq >> [ advisories overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.activemq.advisories
Class TempDestinationAdvisoryEvent

java.lang.Objectorg.activemq.message.AbstractPacket
org.activemq.advisories.TempDestinationAdvisoryEvent
- All Implemented Interfaces:
- java.io.Externalizable, org.activemq.message.Packet, java.io.Serializable
- public class TempDestinationAdvisoryEvent
- extends org.activemq.message.AbstractPacket
- implements java.io.Externalizable
- extends org.activemq.message.AbstractPacket
This event is raised when a MessageTempDestination starts/stops *
- Version:
- $Revision: 1.1.1.1 $
| Field Summary | |
private org.activemq.message.ActiveMQDestination |
destination
|
private static long |
serialVersionUID
|
private boolean |
started
|
| Fields inherited from class org.activemq.message.AbstractPacket |
bitArray, BROKERS_VISITED_INDEX, cachedHashCode, RECEIPT_REQUIRED_INDEX |
| Constructor Summary | |
TempDestinationAdvisoryEvent()
Empty constructor |
|
TempDestinationAdvisoryEvent(org.activemq.message.ActiveMQDestination dest,
boolean started)
Default Constructor |
|
| Method Summary | |
boolean |
equals(java.lang.Object obj)
Tests equality with another instance |
org.activemq.message.ActiveMQDestination |
getDestination()
|
int |
getPacketType()
Return the type of Packet |
int |
hashCode()
Get a value that represents this Object, as uniquely as possible within the confines of an int. |
boolean |
isStarted()
|
void |
readExternal(java.io.ObjectInput in)
read from a stream |
void |
setDestination(org.activemq.message.ActiveMQDestination destination)
|
void |
setStarted(boolean started)
|
java.lang.String |
toString()
Convert this Object to a human-readable String. |
void |
writeExternal(java.io.ObjectOutput out)
write to a stream |
| Methods inherited from class org.activemq.message.AbstractPacket |
addBrokerVisited, clearBrokersVisited, decrementMemoryReferenceCount, equals, getBitArray, getBrokersVisited, getBrokersVisitedAsString, getId, getMemoryUsage, getMemoryUsageReferenceCount, getPacketTypeAsString, hasVisited, incrementMemoryReferenceCount, initializeOther, isJMSMessage, isReceipt, isReceiptRequired, setBitArray, setBrokersVisitedAsString, setId, setMemoryUsage, setReceiptRequired |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
destination
private org.activemq.message.ActiveMQDestination destination
started
private boolean started
| Constructor Detail |
TempDestinationAdvisoryEvent
public TempDestinationAdvisoryEvent()
- Empty constructor
TempDestinationAdvisoryEvent
public TempDestinationAdvisoryEvent(org.activemq.message.ActiveMQDestination dest, boolean started)
- Default Constructor
| Method Detail |
getDestination
public org.activemq.message.ActiveMQDestination getDestination()
setDestination
public void setDestination(org.activemq.message.ActiveMQDestination destination)
isStarted
public boolean isStarted()
setStarted
public void setStarted(boolean started)
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException
- write to a stream
- Specified by:
writeExternalin interfacejava.io.Externalizable
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException
- read from a stream
- Specified by:
readExternalin interfacejava.io.Externalizable
equals
public boolean equals(java.lang.Object obj)
- Description copied from class:
org.activemq.message.AbstractPacket - Tests equality with another instance
hashCode
public int hashCode()
- Description copied from class:
java.lang.Object - Get a value that represents this Object, as uniquely as
possible within the confines of an int.
There are some requirements on this method which subclasses must follow:
- Semantic equality implies identical hashcodes. In other
words, if
a.equals(b)is true, thena.hashCode() == b.hashCode()must be as well. However, the reverse is not necessarily true, and two objects may have the same hashcode without being equal. - It must be consistent. Whichever value o.hashCode() returns on the first invocation must be the value returned on all later invocations as long as the object exists. Notice, however, that the result of hashCode may change between separate executions of a Virtual Machine, because it is not invoked on the same object.
Notice that since
hashCodeis used in java.util.Hashtable and other hashing classes, a poor implementation will degrade the performance of hashing (so don't blindly implement it as returning a constant!). Also, if calculating the hash is time-consuming, a class may consider caching the results.The default implementation returns
System.identityHashCode(this) - Semantic equality implies identical hashcodes. In other
words, if
getPacketType
public int getPacketType()
- Description copied from interface:
org.activemq.message.Packet - Return the type of Packet
- Specified by:
getPacketTypein interfaceorg.activemq.message.Packet
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object - Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string concatenation with this object. If the result is
null, string concatenation will instead use"null".The default implementation returns
getClass().getName() + "@" + Integer.toHexString(hashCode()).
|
|||||||||
| Home >> All >> org >> activemq >> [ advisories overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC