From 4f7582def6cbcbb23c0f9850cc4f735d59497271 Mon Sep 17 00:00:00 2001 From: wingbot <109207340+monadabot@users.noreply.github.com> Date: Thu, 14 Sep 2023 17:07:50 +0300 Subject: [PATCH] feat(docs): update docs (#608) feat(docs): update docs Updates the Wing docs. See details in [workflow run]. [Workflow Run]: https://github.com/winglang/docsite/actions/runs/6186580128 ------ *Automatically created via the "update-docs" workflow* --- .../version-latest/04-standard-library/01-cloud/queue.md | 1 + 1 file changed, 1 insertion(+) 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