The maximum capacity of the queue.
Checks whether the queue is shut down.
Views the next element in the queue without removing it, retrying if the queue is empty.
Views the next element in the queue without removing it, returning None
if the queue is empty.
Shuts down the queue.
The current number of values in the queue.
Takes a value from the queue.
Takes all the values from the queue.
Takes up to the specified number of values from the queue.
Waits for the hub to be shut down.
Checks if the queue is empty.
Checks if the queue is at capacity.
Takes a single element from the queue, returning None
if the queue is
empty.
Drops elements from the queue while they do not satisfy the predicate, taking and returning the first element that does satisfy the predicate.
Drops elements from the queue while they do not satisfy the predicate, taking and returning the first element that does satisfy the predicate. Retries if no elements satisfy the predicate.
Takes a number of elements from the queue between the specified minimum and maximum.
Takes a number of elements from the queue between the specified minimum and maximum. If there are fewer than the minimum number of elements available, retries until at least the minimum number of elements have been collected.
Takes the specified number of elements from the queue.
Takes the specified number of elements from the queue. If there are fewer than the specified number of elements available, it retries until they become available.
A transactional queue that can only be dequeued.