Closed brendan-simon-indt closed 1 year ago
Adds a full() API to complement the empty() API.
full()
empty()
The full() API is available in Python3 queue.Queue class and this PR makes persist-queue more consistent with the queue.Queue API.
queue.Queue
persist-queue
There doesn't seem to be a notion of a full queue when using database queues. The full() API is provided for consistency and always returns False.
False
Adds a
full()
API to complement theempty()
API.The
full()
API is available in Python3queue.Queue
class and this PR makespersist-queue
more consistent with thequeue.Queue
API.There doesn't seem to be a notion of a full queue when using database queues. The
full()
API is provided for consistency and always returnsFalse
.