Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.activemq.advisories
Class TempDestinationAdvisoryEvent  view TempDestinationAdvisoryEvent download TempDestinationAdvisoryEvent.java

java.lang.Object
  extended byorg.activemq.message.AbstractPacket
      extended byorg.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

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
 
Fields inherited from interface org.activemq.message.Packet
ACTIVEMQ_BROKER_INFO, ACTIVEMQ_BYTES_MESSAGE, ACTIVEMQ_CONNECTION_INFO, ACTIVEMQ_MAP_MESSAGE, ACTIVEMQ_MESSAGE, ACTIVEMQ_MSG_ACK, ACTIVEMQ_OBJECT_MESSAGE, ACTIVEMQ_STREAM_MESSAGE, ACTIVEMQ_TEXT_MESSAGE, BROKER_ADMIN_COMMAND, CACHED_VALUE_COMMAND, CAPACITY_INFO, CAPACITY_INFO_REQUEST, CLEANUP_CONNECTION_INFO, CONSUMER_INFO, DURABLE_UNSUBSCRIBE, INT_RESPONSE_RECEIPT_INFO, KEEP_ALIVE, NOT_SET, PRODUCER_INFO, RECEIPT_INFO, RESPONSE_RECEIPT_INFO, SESSION_INFO, TRANSACTION_INFO, WIRE_FORMAT_INFO, XA_TRANSACTION_INFO
 
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:
writeExternal in interface java.io.Externalizable

readExternal

public void readExternal(java.io.ObjectInput in)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
read from a stream

Specified by:
readExternal in interface java.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, then a.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 hashCode is 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)


getPacketType

public int getPacketType()
Description copied from interface: org.activemq.message.Packet
Return the type of Packet

Specified by:
getPacketType in interface org.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()).