feat: add thread-safe Queue for TurboAPI handlers#18
Open
Conversation
Implements a FIFO queue using threading.Condition + collections.deque that works from Tokio worker threads where asyncio.Queue fails. Supports put/get with blocking and timeout, put_nowait/get_nowait, qsize/empty/full, and task_done/join for completion tracking. Generated with AI Co-Authored-By: AI <ai@example.com>
Enables `from turboapi import Queue, QueueEmpty, QueueFull` for convenient access to the thread-safe queue. Generated with AI Co-Authored-By: AI <ai@example.com>
20 tests covering basic operations, non-blocking get/put, timeouts, concurrent producer/consumer thread safety, bounded queue blocking, task_done/join pattern, and turboapi import. Generated with AI Co-Authored-By: AI <ai@example.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Queue,QueueEmpty,QueueFull- a thread-safe in-memory queue that works from Tokio worker threads whereasyncio.Queuefailsthreading.Condition+collections.dequefor true thread safety across Python 3.13, 3.13t, and 3.14Usage
API
put(item, block=True, timeout=None)/put_nowait(item)get(block=True, timeout=None)/get_nowait()qsize(),empty(),full()task_done(),join(timeout=None)Test plan