diff options
| author | Gordon Sim <gsim@apache.org> | 2013-08-13 15:06:42 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-08-13 15:06:42 +0000 |
| commit | 144f3c698bdddf22509691a4f285305e9fd83291 (patch) | |
| tree | 2a399e0c06586c0ab5cab8986eb317767ac4080d /qpid/cpp/include | |
| parent | 4c5376ff911c42a9e43115d38c6751573d8af514 (diff) | |
| download | qpid-python-144f3c698bdddf22509691a4f285305e9fd83291.tar.gz | |
QPID-5040: support for sending and receiving messages with AmqpValue sections
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1513536 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/messaging/Message.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qpid/cpp/include/qpid/messaging/Message.h b/qpid/cpp/include/qpid/messaging/Message.h index 5b14c7cf27..10569eb006 100644 --- a/qpid/cpp/include/qpid/messaging/Message.h +++ b/qpid/cpp/include/qpid/messaging/Message.h @@ -42,6 +42,7 @@ class MessageImpl; class QPID_MESSAGING_CLASS_EXTERN Message { public: + QPID_MESSAGING_EXTERN Message(qpid::types::Variant&); QPID_MESSAGING_EXTERN Message(const std::string& bytes = std::string()); QPID_MESSAGING_EXTERN Message(const char*, size_t); QPID_MESSAGING_EXTERN Message(const Message&); @@ -164,6 +165,27 @@ class QPID_MESSAGING_CLASS_EXTERN Message /** Get the content as a std::string */ QPID_MESSAGING_EXTERN std::string getContent() const; + /** Get the content as raw bytes (an alias for getContent() */ + QPID_MESSAGING_EXTERN std::string getContentBytes() const; + /** Set the content as raw bytes (an alias for setContent() */ + QPID_MESSAGING_EXTERN void setContentBytes(const std::string&); + /** + * Get the content as a Variant, which can represent an object of + * different types. This can be used for content representing a + * map or a list for example. + */ + QPID_MESSAGING_EXTERN qpid::types::Variant& getContentObject(); + /** + * Get the content as a Variant, which can represent an object of + * different types. This can be used for content representing a + * map or a list for example. + */ + QPID_MESSAGING_EXTERN const qpid::types::Variant& getContentObject() const; + /** + * Set the content using a Variant, which can represent an object + * of different types. + */ + QPID_MESSAGING_EXTERN void setContentObject(const qpid::types::Variant&); /** * Get a const pointer to the start of the content data. The * memory pointed to is owned by the message. The getContentSize() |
