#include <userver/urabbitmq/typedefs.hpp>
StrongTypedef alias for an exchange name.
Definition at line 29 of file typedefs.hpp.
Inheritance diagram for urabbitmq::Exchange:
Collaboration diagram for urabbitmq::Exchange:Public Types | |
| enum class | Type { kFanOut , kDirect , kTopic , kHeaders , kConsistentHash , kMessageDeduplication } |
| Type of an exchange. More... | |
| enum class | Flags { kNone = 0 , kPassive = 1 << 0 , kDurable = 1 << 1 , kAutoDelete = 1 << 2 , kInternal = 1 << 3 , kNoWait = 1 << 4 } |
| Exchange options, consult RabbitMQ docs for better understanding. More... | |
Public Types inherited from utils::StrongTypedef< class ExchangeTag, std::string > | |
| using | UnderlyingType |
| using | TagType |
Additional Inherited Members | |
Public Member Functions inherited from utils::StrongTypedef< class ExchangeTag, std::string > | |
| StrongTypedef (const StrongTypedef &)=default | |
| StrongTypedef (StrongTypedef &&) noexcept=default | |
| constexpr | StrongTypedef (impl::strong_typedef::InitializerList< std::string > lst) |
| constexpr | StrongTypedef (Args &&... args) noexcept(noexcept(std::string(std::forward< Args >(args)...))) |
| StrongTypedef & | operator= (const StrongTypedef &)=default |
| StrongTypedef & | operator= (StrongTypedef &&) noexcept=default |
| constexpr | operator const std::string & () const &noexcept |
| constexpr | operator std::string () &&noexcept |
| constexpr | operator std::string & () &noexcept |
| constexpr const std::string & | GetUnderlying () const &noexcept |
| constexpr std::string | GetUnderlying () &&noexcept |
| constexpr std::string & | GetUnderlying () &noexcept |
| auto | begin () |
| auto | begin () const |
| auto | end () |
| auto | end () const |
| auto | cbegin () const |
| auto | cend () const |
| auto | size () const |
| auto | empty () const |
| auto | clear () |
| decltype(auto) | operator[] (Arg &&i) |
| decltype(auto) | operator[] (Arg &&i) const |
Static Public Attributes inherited from utils::StrongTypedef< class ExchangeTag, std::string > | |
| static constexpr StrongTypedefOps | kOps |
|
strong |
Exchange options, consult RabbitMQ docs for better understanding.
Definition at line 49 of file typedefs.hpp.
|
strong |
Type of an exchange.
Consult RabbitMQ docs for better understanding.
Definition at line 37 of file typedefs.hpp.