activemq-cpp-3.9.5
ActiveMQTextMessage.h
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef _ACTIVEMQ_COMMANDS_ACTIVEMQTEXTMESSAGE_H_
19#define _ACTIVEMQ_COMMANDS_ACTIVEMQTEXTMESSAGE_H_
20
23#include <cms/TextMessage.h>
24#include <vector>
25#include <string>
26#include <memory>
27
28namespace activemq {
29namespace commands {
30
31 class AMQCPP_API ActiveMQTextMessage : public ActiveMQMessageTemplate<cms::TextMessage> {
32 public:
33
34 const static unsigned char ID_ACTIVEMQTEXTMESSAGE;
35
36 mutable std::auto_ptr<std::string> text;
37
38 private:
39
40 ActiveMQTextMessage(const ActiveMQTextMessage&);
41 ActiveMQTextMessage& operator=(const ActiveMQTextMessage&);
42
43 public:
44
46
47 virtual ~ActiveMQTextMessage() throw ();
48
49 virtual unsigned char getDataStructureType() const;
50
51 virtual ActiveMQTextMessage* cloneDataStructure() const;
52
54
55 virtual std::string toString() const;
56
57 virtual bool equals(const DataStructure* value) const;
58
59 virtual void clearBody();
60
61 virtual void beforeMarshal(wireformat::WireFormat* wireFormat);
62
63 virtual unsigned int getSize() const;
64
65 public: // CMS Message
66
67 virtual cms::TextMessage* clone() const;
68
69 public: // CMS TextMessage
70
71 virtual std::string getText() const;
72
73 virtual void setText(const char* msg);
74
75 virtual void setText(const std::string& msg);
76
77 };
78
79}}
80
81#endif /*_ACTIVEMQ_COMMANDS_ACTIVEMQTEXTMESSAGE_H_*/
#define AMQCPP_API
Definition Config.h:30
ActiveMQMessageTemplate()
Definition ActiveMQMessageTemplate.h:48
virtual std::string toString() const
Returns a string containing the information for this DataStructure such as its type and value of its ...
virtual unsigned char getDataStructureType() const
Get the DataStructure Type as defined in CommandTypes.h.
std::auto_ptr< std::string > text
Definition ActiveMQTextMessage.h:36
virtual void beforeMarshal(wireformat::WireFormat *wireFormat)
Called before marshaling is started to prepare the object to be marshaled.
virtual ActiveMQTextMessage * cloneDataStructure() const
Clone this obbject and return a new instance that the caller now owns, this will be an exact copy of ...
virtual void clearBody()
Clears out the body of the message.
virtual void setText(const char *msg)
Sets the message contents, does not take ownership of the passed char*, but copies it instead.
static const unsigned char ID_ACTIVEMQTEXTMESSAGE
Definition ActiveMQTextMessage.h:34
virtual cms::TextMessage * clone() const
Clone this message exactly, returns a new instance that the caller is required to delete.
virtual unsigned int getSize() const
Returns the Size of this message in Bytes.
virtual bool equals(const DataStructure *value) const
Compares the DataStructure passed in to this one, and returns if they are equivalent.
virtual void copyDataStructure(const DataStructure *src)
Copy the contents of the passed object into this objects members, overwriting any existing data.
virtual std::string getText() const
Gets the message character buffer.
Definition DataStructure.h:27
Definition ActiveMQBlobMessage.h:28
Definition BaseDataStructure.h:28
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
Definition CachedConsumer.h:24
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
Definition DestinationResolver.h:23
Definition ArrayPointer.h:432
#define const
Definition zconf.h:198