activemq-cpp-3.4.0
|
Defines a Temporary Queue based Destination. More...
#include <src/main/cms/TemporaryQueue.h>
Public Member Functions | |
virtual | ~TemporaryQueue () throw () |
virtual std::string | getQueueName () const =0 |
Gets the name of this queue. | |
virtual void | destroy ()=0 |
Destroy's the Temporary Destination at the Provider. |
Defines a Temporary Queue based Destination.
A TemporaryQueue is a special type of Queue Destination that can only be consumed from the Connection which created it. TemporaryQueues are most commonly used as the reply to address for Message's that implement the request response pattern.
A TemporaryQueue is guaranteed to exist at the Provider only for the lifetime of the Connection that created it.
virtual cms::TemporaryQueue::~TemporaryQueue | ( | ) | throw () [virtual] |
virtual void cms::TemporaryQueue::destroy | ( | ) | [pure virtual] |
Destroy's the Temporary Destination at the Provider.
CMSException | - if an internal error occurs. |
Implemented in activemq::commands::ActiveMQTempQueue.
virtual std::string cms::TemporaryQueue::getQueueName | ( | ) | const [pure virtual] |
Gets the name of this queue.
CMSException | - if an internal error occurs. |
Implemented in activemq::commands::ActiveMQTempQueue.