| 42 | container::~container() = default; |
| 43 | |
| 44 | returned<connection> container::connect(const std::string &url) { |
| 45 | return connect(url, connection_options()); |
| 46 | } |
| 47 | |
| 48 | returned<sender> container::open_sender(const std::string &url) { |
| 49 | return open_sender(url, proton::sender_options(), connection_options()); |