| | 1 | | // Copyright (c) Microsoft. All rights reserved. |
| | 2 | | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
| | 3 | |
|
| | 4 | | namespace Microsoft.Azure.ServiceBus.Management |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Message count details of the sub-queues of the entity. |
| | 8 | | /// </summary> |
| | 9 | | public class MessageCountDetails |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// The number of active messages in the entity. |
| | 13 | | /// </summary> |
| 0 | 14 | | public long ActiveMessageCount { get; internal set; } |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// The number of dead-lettered messages in the entity. |
| | 18 | | /// </summary> |
| 0 | 19 | | public long DeadLetterMessageCount { get; internal set; } |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// The number of messages which are yet to be scheduled. |
| | 23 | | /// </summary> |
| 0 | 24 | | public long ScheduledMessageCount { get; internal set; } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// The number of messages which are yet to be transferred/forwarded to destination entity. |
| | 28 | | /// </summary> |
| 0 | 29 | | public long TransferMessageCount { get; internal set; } |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// The number of messages transfer-messages which are dead-lettered into transfer-dead-letter sub-queue. |
| | 33 | | /// </summary> |
| 0 | 34 | | public long TransferDeadLetterMessageCount { get; internal set; } |
| | 35 | | } |
| | 36 | | } |