Ordered Delivery
With Queues, the ordered delivery is guaranteed by default. This means:- Your messages will be queued without blocking the REST API and sent one by one in FIFO order. Queued means CREATED event will be logged.
- The next message will wait for retries of the current one if it can not be delivered because your endpoint returns non-2xx code. In other words, the next message will be ACTIVE only after the last message is either DELIVERED or FAILED.
- Next message will wait for callbacks or failure callbacks to finish.
Controlled Parallelism
For the parallelism limit, we introduced an easier and less limited API with publish.
Please check the Flow Control page for the detailed information.Setting parallelism with queues will be deprecated at some point.
enqueue
path to send your messages.