Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/docs/queues/configuration/javascript-apis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Optional configuration that applies when sending a message to a queue.
* As of now, this option is for internal use. In the future, `contentType` will be used by alternative consumer types to explicitly mark messages as serialized so they can be consumed in the desired type.
* See [QueuesContentType](#queuescontenttype) for possible values.

* <code>delaySecondsnumber</code>
* <code>delaySeconds</code> number

* The number of seconds to [delay a message](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer.
* Must be an integer between 0 and 43200 (12 hours). Setting this value to zero will explicitly prevent the message from being delayed, even if there is a global (default) delay at the queue level.
Expand All @@ -117,7 +117,7 @@ Optional configuration that applies when sending a message to a queue.

Optional configuration that applies when sending a batch of messages to a queue.

* <code>delaySecondsnumber</code>
* <code>delaySeconds</code> number

* The number of seconds to [delay messages](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer.
* Must be a positive integer.
Expand Down Expand Up @@ -291,7 +291,7 @@ declare interface QueueRetryOptions {
}
```

* <code>delaySecondsnumber</code>
* <code>delaySeconds</code> number

* The number of seconds to [delay a message](/queues/configuration/batching-retries/) for within the queue, before it can be delivered to a consumer.
* Must be a positive integer.
Loading