Skip to content

QueueProps

Properties for defining a Queue.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-mns-queue

Initializer

using AlibabaCloud.SDK.ROS.CDK.Mns;
new QueueProps {
    object QueueName,
    object DelaySeconds = null,
    object LoggingEnabled = null,
    object MaximumMessageSize = null,
    object MessageRetentionPeriod = null,
    object PollingWaitSeconds = null,
    object VisibilityTimeout = null
};

Properties

Name Type Description
QueueName object Property queueName: Queue name.
DelaySeconds object Property delaySeconds: It is measured in seconds.
LoggingEnabled object Property loggingEnabled: Whether to enable log management.
MaximumMessageSize object Property maximumMessageSize: Maximum body length of a message sent to the queue, measured in bytes.
MessageRetentionPeriod object Property messageRetentionPeriod: Maximum lifetime of the message in the queue, measured in seconds.
PollingWaitSeconds object Property pollingWaitSeconds: It is the maximum time that a ReceiveMessage request could be waiting for any incoming messages, while there are no message in the queue.
VisibilityTimeout object Property visibilityTimeout: Duration in which a message stays in Inactive status after it is consumed from the queue.

QueueNameRequired

public object QueueName { get; set; }
  • Type: object

Property queueName: Queue name.


DelaySecondsOptional

public object DelaySeconds { get; set; }
  • Type: object

Property delaySeconds: It is measured in seconds.

All messages sent to the queue can be consumed until the DelaySeconds expires. An integer between 0 and 604800 (7 days). The default value is 0


LoggingEnabledOptional

public object LoggingEnabled { get; set; }
  • Type: object

Property loggingEnabled: Whether to enable log management.

"true" indicates that log management is enabled, whereas "false" indicates that log management is disabled. The default value is false


MaximumMessageSizeOptional

public object MaximumMessageSize { get; set; }
  • Type: object

Property maximumMessageSize: Maximum body length of a message sent to the queue, measured in bytes.

An integer between 1024 (1K) and 65536 (64K). The default value is 65536 (64K).


MessageRetentionPeriodOptional

public object MessageRetentionPeriod { get; set; }
  • Type: object

Property messageRetentionPeriod: Maximum lifetime of the message in the queue, measured in seconds.

After the time specified by this parameter expires, the message will be deleted no matter whether it has been consumed or not. An integer between 60 (1 minute) and 1296000 (15 days). The default value is 345600 (4 days)


PollingWaitSecondsOptional

public object PollingWaitSeconds { get; set; }
  • Type: object

Property pollingWaitSeconds: It is the maximum time that a ReceiveMessage request could be waiting for any incoming messages, while there are no message in the queue.

Measured in seconds. An integer between 0 and 30 seconds. The default value is 0 (seconds)


VisibilityTimeoutOptional

public object VisibilityTimeout { get; set; }
  • Type: object

Property visibilityTimeout: Duration in which a message stays in Inactive status after it is consumed from the queue.

Measured in seconds. An integer between 1 and 43200 (12 hours). The default value is 30 (seconds)