Azure Queue Storage

Send message

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Add a new message to the back of the queue.

Inputs

Champ

Type

Description

storageAccount [required]

string

queueName [required]

string

message [required]

string

visibilityTimeout

number

The visibility timeout value, in seconds. The value must be larger than or equal to 0, and cannot be larger than 7 days. Defaults to 0.

messageTTL

number

The TTL interval for the message, in seconds. This can be any positive number, as well as -1 indicating that the message does not expire. Defaults to 7 days.

default: 604800

Outputs

Champ

Type

Description

messageId [required]

string

popReceipt [required]

string

insertedOn [required]

date-time

The time that the message was inserted into the queue.

expiresOn [required]

date-time

The time that the message will expire and be automatically deleted.

nextVisibleOn [required]

date-time

The time that the message will again become visible in the queue.