azure-core-amqp
Loading...
Searching...
No Matches
amqp_detach.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//
5// This file contains protocol level definitions for the AMQP protocol.
6
7#pragma once
8
9#include "azure/core/amqp/internal/models/amqp_error.hpp"
10
11#include <cstdint>
12#include <iostream>
13
14namespace Azure { namespace Core { namespace Amqp { namespace Models { namespace _internal {
15 namespace Performatives {
16
23 class AmqpDetach {
24 public:
25 AmqpDetach() = default;
26
27 uint32_t Handle{};
28 bool Closed{};
29 AmqpError Error;
30 };
31 std::ostream& operator<<(std::ostream&, AmqpDetach const&);
32
33}}}}}} // namespace Azure::Core::Amqp::Models::_internal::Performatives