Show / Hide Table of Contents

Class QueueStats

The stats for a queue and its dead letter queue. If channelId is specified in request field, it will return channel specific stats response.

Inheritance
object
QueueStats
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.QueueService.Models
Assembly: OCI.DotNetSDK.Queue.dll
Syntax
public class QueueStats

Properties

ChannelId

Declaration
[JsonProperty(PropertyName = "channelId")]
public string ChannelId { get; set; }
Property Value
Type Description
string

If channelId is present in GetStats call, the channel id will be returned in the GetStats response.

Dlq

Declaration
[Required(ErrorMessage = "Dlq is required.")]
[JsonProperty(PropertyName = "dlq")]
public Stats Dlq { get; set; }
Property Value
Type Description
Stats
Remarks

Required

Queue

Declaration
[Required(ErrorMessage = "Queue is required.")]
[JsonProperty(PropertyName = "queue")]
public Stats Queue { get; set; }
Property Value
Type Description
Stats
Remarks

Required

In this article
Back to top