Does uasyncio not have a queue class/object? #9141
Jibun-no-Kage
started this conversation in
General
Replies: 2 comments
-
There is no official class. An unofficial one, with the same API as CPython's |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, I saw the unofficial one, cool, I wrote one that is much simpler since all I needed was a queue to drive flashing an RGB diode with specific sequence or pattern without overlap. Maybe mine is closer to a FIFO ring buffer now that I think about it. But, the unofficial one is a very interesting implementation. Thanks. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is take from a recently nightly build...
I thought I read somewhere uasyncio 3.0 had a (generic) queue class/object? Creating a simple array/list queue class is pretty easy to do, but would not want to recreate the wheel.
Beta Was this translation helpful? Give feedback.
All reactions