diff --git a/versioned_docs/version-latest/04-standard-library/01-cloud/queue.md b/versioned_docs/version-latest/04-standard-library/01-cloud/queue.md index b872a2673..5ce2280d5 100644 --- a/versioned_docs/version-latest/04-standard-library/01-cloud/queue.md +++ b/versioned_docs/version-latest/04-standard-library/01-cloud/queue.md @@ -20,6 +20,7 @@ sidebar_position: 1 The `cloud.Queue` resource represents a data structure for holding a list of messages. Queues are typically used to decouple producers of data and the consumers of said data in distributed systems. +Queues by default are not FIFO (first in, first out) - so the order of messages is not guaranteed. ## Usage