Show / Hide Table of Contents

Class Stats

The stats for a queue or a dead letter queue.

Inheritance
object
Stats
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 Stats

Properties

InFlightMessages

Declaration
[Required(ErrorMessage = "InFlightMessages is required.")]
[JsonProperty(PropertyName = "inFlightMessages")]
public long? InFlightMessages { get; set; }
Property Value
Type Description
long?

The approximate number of messages delivered to a consumer but not yet deleted and so unavailable for re-delivery.

Remarks

Required

SizeInBytes

Declaration
[Required(ErrorMessage = "SizeInBytes is required.")]
[JsonProperty(PropertyName = "sizeInBytes")]
public long? SizeInBytes { get; set; }
Property Value
Type Description
long?

The approximate size of the queue in bytes. Sum of the size of visible and in-flight messages.

Remarks

Required

VisibleMessages

Declaration
[Required(ErrorMessage = "VisibleMessages is required.")]
[JsonProperty(PropertyName = "visibleMessages")]
public long? VisibleMessages { get; set; }
Property Value
Type Description
long?

The approximate number of visible messages (available for delivery) currently in the queue.

Remarks

Required

In this article
Back to top