Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 44707 invoked from network); 3 Aug 2006 21:24:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Aug 2006 21:24:56 -0000 Received: (qmail 22094 invoked by uid 500); 3 Aug 2006 21:24:56 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 22074 invoked by uid 500); 3 Aug 2006 21:24:55 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 22059 invoked by uid 99); 3 Aug 2006 21:24:55 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Aug 2006 14:24:55 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Aug 2006 14:24:50 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 294931A9820; Thu, 3 Aug 2006 14:24:30 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r428531 [3/9] - /incubator/activemq/site/cms/html/ Date: Thu, 03 Aug 2006 21:24:16 -0000 To: activemq-commits@geronimo.apache.org From: nmittler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060803212430.294931A9820@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: incubator/activemq/site/cms/html/classcms_1_1Destination.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/cms/html/classcms_1_1Destination.html?rev=428531&view=auto ============================================================================== --- incubator/activemq/site/cms/html/classcms_1_1Destination.html (added) +++ incubator/activemq/site/cms/html/classcms_1_1Destination.html Thu Aug 3 14:24:12 2006 @@ -0,0 +1,312 @@ + + +cms: cms::Destination Class Reference + + + + + + + +

cms::Destination Class Reference

#include <Destination.h> +

+

Inheritance diagram for cms::Destination: +

+ +cms::Queue +cms::TemporaryQueue +cms::TemporaryTopic +cms::Topic + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Types

enum  DestinationType { TOPIC, +QUEUE, +TEMPORARY_TOPIC, +TEMPORARY_QUEUE + }

Public Member Functions

virtual ~Destination (void)
virtual DestinationType getDestinationType (void) const =0
virtual std::string toString (void) const =0
virtual std::string toProviderString (void) const =0
virtual cms::Destinationclone (void) const =0
virtual void copy (const cms::Destination &source)=0
virtual const activemq::util::Properties & getProperties (void) const =0
+

Detailed Description

+A Destination object encapsulates a provider-specific address. +

+


Member Enumeration Documentation

+

+ + + + +
+ + + + +
enum cms::Destination::DestinationType
+
+ + + + + +
+   + + +

+

Enumerator:
+ + + + + +
TOPIC  +
QUEUE  +
TEMPORARY_TOPIC  +
TEMPORARY_QUEUE  +
+
+
+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + +
virtual cms::Destination::~Destination void   )  [inline, virtual]
+
+ + + + + +
+   + + +

+Destructor

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + +
virtual cms::Destination* cms::Destination::clone void   )  const [pure virtual]
+
+ + + + + +
+   + + +

+Creates a new instance of this destination type that is a copy of this one, and returns it.

Returns:
cloned copy of this object
+
+

+ + + + +
+ + + + + + + + + +
virtual void cms::Destination::copy const cms::Destination source  )  [pure virtual]
+
+ + + + + +
+   + + +

+Copies the contents of the given Destinastion object to this one.

Parameters:
+ + +
source The source Destination object.
+
+
+

+ + + + +
+ + + + + + + + + +
virtual DestinationType cms::Destination::getDestinationType void   )  const [pure virtual]
+
+ + + + + +
+   + + +

+Retrieve the Destination Type for this Destination

Returns:
The Destination Type
+
+

+ + + + +
+ + + + + + + + + +
virtual const activemq::util::Properties& cms::Destination::getProperties void   )  const [pure virtual]
+
+ + + + + +
+   + + +

+Retrieve any properties that might be part of the destination that was specified. This is a deviation from the JMS spec but necessary due to C++ restrictions.

Returns:
const reference to a properties object.
+
+

+ + + + +
+ + + + + + + + + +
virtual std::string cms::Destination::toProviderString void   )  const [pure virtual]
+
+ + + + + +
+   + + +

+Converts the Destination to a String value representing the Provider specific name fot this destination, which is not necessarily equal to the User Supplied name of the Destination

Returns:
Provider specific Name
+
+

+ + + + +
+ + + + + + + + + +
virtual std::string cms::Destination::toString void   )  const [pure virtual]
+
+ + + + + +
+   + + +

+Converts the Destination Name into a String

Returns:
string name
+
+


The documentation for this class was generated from the following file: +
Generated on Thu Aug 3 16:39:15 2006 for cms by  + +doxygen 1.4.5
+ + Propchange: incubator/activemq/site/cms/html/classcms_1_1Destination.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/activemq/site/cms/html/classcms_1_1Destination.png URL: http://svn.apache.org/viewvc/incubator/activemq/site/cms/html/classcms_1_1Destination.png?rev=428531&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/activemq/site/cms/html/classcms_1_1Destination.png ------------------------------------------------------------------------------ svn:mime-type = image/png Added: incubator/activemq/site/cms/html/classcms_1_1ExceptionListener-members.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/cms/html/classcms_1_1ExceptionListener-members.html?rev=428531&view=auto ============================================================================== --- incubator/activemq/site/cms/html/classcms_1_1ExceptionListener-members.html (added) +++ incubator/activemq/site/cms/html/classcms_1_1ExceptionListener-members.html Thu Aug 3 14:24:12 2006 @@ -0,0 +1,29 @@ + + +cms: Member List + + + + + + +

cms::ExceptionListener Member List

This is the complete list of members for cms::ExceptionListener, including all inherited members.

+ + +
onException(const cms::CMSException &ex)=0cms::ExceptionListener [pure virtual]
~ExceptionListener(void)cms::ExceptionListener [inline, virtual]


Generated on Thu Aug 3 16:39:15 2006 for cms by  + +doxygen 1.4.5
+ + Propchange: incubator/activemq/site/cms/html/classcms_1_1ExceptionListener-members.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/activemq/site/cms/html/classcms_1_1ExceptionListener.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/cms/html/classcms_1_1ExceptionListener.html?rev=428531&view=auto ============================================================================== --- incubator/activemq/site/cms/html/classcms_1_1ExceptionListener.html (added) +++ incubator/activemq/site/cms/html/classcms_1_1ExceptionListener.html Thu Aug 3 14:24:12 2006 @@ -0,0 +1,103 @@ + + +cms: cms::ExceptionListener Class Reference + + + + + + + +

cms::ExceptionListener Class Reference

#include <ExceptionListener.h> +

+List of all members. + + + + + + +

Public Member Functions

virtual ~ExceptionListener (void)
virtual void onException (const cms::CMSException &ex)=0
+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + +
virtual cms::ExceptionListener::~ExceptionListener void   )  [inline, virtual]
+
+ + + + + +
+   + + +

+

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + +
virtual void cms::ExceptionListener::onException const cms::CMSException ex  )  [pure virtual]
+
+ + + + + +
+   + + +

+Called when an exception occurs.

Parameters:
+ + +
Exception Object that occurred.
+
+
+


The documentation for this class was generated from the following file: +
Generated on Thu Aug 3 16:39:15 2006 for cms by  + +doxygen 1.4.5
+ + Propchange: incubator/activemq/site/cms/html/classcms_1_1ExceptionListener.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/activemq/site/cms/html/classcms_1_1MapMessage-members.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/cms/html/classcms_1_1MapMessage-members.html?rev=428531&view=auto ============================================================================== --- incubator/activemq/site/cms/html/classcms_1_1MapMessage-members.html (added) +++ incubator/activemq/site/cms/html/classcms_1_1MapMessage-members.html Thu Aug 3 14:24:12 2006 @@ -0,0 +1,75 @@ + + +cms: Member List + + + + + + +

cms::MapMessage Member List

This is the complete list of members for cms::MapMessage, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
acknowledge(void) const =0cms::Message [pure virtual]
clone(void) const =0cms::Message [pure virtual]
getBoolean(const std::string &name)=0cms::MapMessage [pure virtual]
getByte(const std::string &name)=0cms::MapMessage [pure virtual]
getBytes(const std::string &name)=0cms::MapMessage [pure virtual]
getChar(const std::string &name)=0cms::MapMessage [pure virtual]
getCMSCorrelationId(void) const =0cms::Message [pure virtual]
getCMSDeliveryMode(void) const =0cms::Message [pure virtual]
getCMSDestination(void) const =0cms::Message [pure virtual]
getCMSExpiration(void) const =0cms::Message [pure virtual]
getCMSMessageId(void) const =0cms::Message [pure virtual]
getCMSMessageType(void) const =0cms::Message [pure virtual]
getCMSPriority(void) const =0cms::Message [pure virtual]
getCMSRedelivered(void) const =0cms::Message [pure virtual]
getCMSReplyTo(void) const =0cms::Message [pure virtual]
getCMSTimeStamp(void) const =0cms::Message [pure virtual]
getDouble(const std::string &name)=0cms::MapMessage [pure virtual]
getFloat(const std::string &name)=0cms::MapMessage [pure virtual]
getInt(const std::string &name)=0cms::MapMessage [pure virtual]
getLong(const std::string &name)=0cms::MapMessage [pure virtual]
getMapNames(void) const =0cms::MapMessage [pure virtual]
getProperties(void)=0cms::Message [pure virtual]
getProperties(void) const =0cms::Message [pure virtual]
getShort(const std::string &name)=0cms::MapMessage [pure virtual]
getString(const std::string &name)=0cms::MapMessage [pure virtual]
itemExists(const std::string &name) const =0cms::MapMessage [pure virtual]
setBoolean(const std::string &name, bool value)=0cms::MapMessage [pure virtual]
setByte(const std::string &name, unsigned char value)=0cms::MapMessage [pure virtual]
setBytes(const std::string &name, unsigned char *value)=0cms::MapMessage [pure virtual]
setChar(const std::string &name, char value)=0cms::MapMessage [pure virtual]
setCMSCorrelationId(const std::string &correlationId)=0cms::Message [pure virtual]
setCMSDeliveryMode(int mode)=0cms::Message [pure virtual]
setCMSDestination(const Destination *destination)=0cms::Message [pure virtual]
setCMSExpiration(long expireTime)=0cms::Message [pure virtual]
setCMSMessageId(const std::string &id)=0cms::Message [pure virtual]
setCMSMessageType(const std::string &type)=0cms::Message [pure virtual]
setCMSPriority(int priority)=0cms::Message [pure virtual]
setCMSRedelivered(bool redelivered)=0cms::Message [pure virtual]
setCMSReplyTo(const std::string &id)=0cms::Message [pure virtual]
setCMSTimeStamp(long timeStamp)=0cms::Message [pure virtual]
setDouble(const std::string &name, double value)=0cms::MapMessage [pure virtual]
setFloat(const std::string &name, float value)=0cms::MapMessage [pure virtual]
setInt(const std::string &name, int value)=0cms::MapMessage [pure virtual]
setLong(const std::string &name, long value)=0cms::MapMessage [pure virtual]
setShort(const std::string &name, short value)=0cms::MapMessage [pure virtual]
setString(const std::string &name, const std::string &value)=0cms::MapMessage [pure virtual]
~MapMessage(void)cms::MapMessage [inline, virtual]
~Message(void)cms::Message [inline, virtual]


Generated on Thu Aug 3 16:39:15 2006 for cms by  + +doxygen 1.4.5
+ + Propchange: incubator/activemq/site/cms/html/classcms_1_1MapMessage-members.html ------------------------------------------------------------------------------ svn:eol-style = native