azure-core-amqp
Loading...
Searching...
No Matches
amqp_settle_mode.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <iostream>
7
8namespace Azure { namespace Core { namespace Amqp { namespace _internal {
9
10 enum class SenderSettleMode
11 {
12 Unsettled,
13 Settled,
14 Mixed,
15 };
16
17 std::ostream& operator<<(std::ostream& os, SenderSettleMode mode);
18
19 enum class ReceiverSettleMode
20 {
21 First,
22 Second,
23 };
24 std::ostream& operator<<(std::ostream& os, ReceiverSettleMode mode);
25
26}}}} // namespace Azure::Core::Amqp::_internal