#include <userver/urabbitmq/typedefs.hpp>
Structure holding an AMQP message body along with some of its metadata fields. This struct is used to pass messages from the end user, hiding the actual AMQP message object implementation.
Definition at line 93 of file typedefs.hpp.
Public Attributes | |
| std::string | message |
| MessageType | type |
| std::optional< std::string > | reply_to {} |
| std::optional< std::string > | correlation_id {} |
| std::optional< std::chrono::milliseconds > | expiration {} |
| std::optional< std::unordered_map< std::string, HeaderValue > > | headers {} |
| std::optional<std::string> urabbitmq::Envelope::correlation_id {} |
Definition at line 97 of file typedefs.hpp.
| std::optional<std::chrono::milliseconds> urabbitmq::Envelope::expiration {} |
Definition at line 98 of file typedefs.hpp.
| std::optional<std::unordered_map<std::string, HeaderValue> > urabbitmq::Envelope::headers {} |
Definition at line 99 of file typedefs.hpp.
| std::string urabbitmq::Envelope::message |
Definition at line 94 of file typedefs.hpp.
| std::optional<std::string> urabbitmq::Envelope::reply_to {} |
Definition at line 96 of file typedefs.hpp.
| MessageType urabbitmq::Envelope::type |
Definition at line 95 of file typedefs.hpp.