diff --git a/docs/index.html b/docs/index.html index 634e039..27aa0fd 100644 --- a/docs/index.html +++ b/docs/index.html @@ -102,10 +102,10 @@
The following methods are supported by stiqueue
:
``enq(msg: bytes)``: Adds a message to the queue.
``deq() -> bytes``: Retrieves the next message from the queue (blocking call).
``cnt() -> int``: Returns the number of messages currently in the queue.
``ack()``: Acknowledges a message when ack_required=True
. If not acknowledged within ack_timeout
,
+
enq(msg: bytes)
: Adds a message to the queue.
deq() -> bytes
: Retrieves the next message from the queue (blocking call).
cnt() -> int
: Returns the number of messages currently in the queue.
ack()
: Acknowledges a message when ack_required=True
. If not acknowledged within ack_timeout
,
the server re-enqueues the message.
@@ -161,7 +161,7 @@Run a Specific Test -
Key Highlights¶
+Key Highlights¶
Lightweight and Flexible: Minimal dependencies and easy to integrate.
Blocking Dequeue: Efficient for resource-limited systems.