#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 83 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::string> urabbitmq::Envelope::correlation_id {} |
Definition at line 87 of file typedefs.hpp.
std::optional<std::chrono::milliseconds> urabbitmq::Envelope::expiration {} |
Definition at line 88 of file typedefs.hpp.
std::string urabbitmq::Envelope::message |
Definition at line 84 of file typedefs.hpp.
std::optional<std::string> urabbitmq::Envelope::reply_to {} |
Definition at line 86 of file typedefs.hpp.
MessageType urabbitmq::Envelope::type |
Definition at line 85 of file typedefs.hpp.