You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python's queue.Queue.get() takes an optional timeout, and will block for up to that amount of time.
Python's asyncio.Queue.get() doesn't support this option.
I know Janus is attempting to closely initiate these APIs, but would it be feasible (and a good idea) for Janus to provide a timeout option even when reading from the async queue?
Python's
queue.Queue.get()
takes an optional timeout, and will block for up to that amount of time.Python's
asyncio.Queue.get()
doesn't support this option.I know Janus is attempting to closely initiate these APIs, but would it be feasible (and a good idea) for Janus to provide a timeout option even when reading from the async queue?
I would love to be able to do this:
The text was updated successfully, but these errors were encountered: