aboutsummaryrefslogtreecommitdiff
path: root/python/python3-janus/README
diff options
context:
space:
mode:
authorTonus <tonus1@free.fr>2025-08-11 10:29:46 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-08-11 10:47:17 +0700
commit4b58157facad8480926ca9c4a8bb5b4c55d5eb5e (patch)
treef1e32a1b0eafceb3205250f892782c41fd476db3 /python/python3-janus/README
parent3db16d311200d0edb84215c54f6c85a762f398f1 (diff)
python/python3-janus: Added (Thread-safe asyncio-aware queue).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-janus/README')
-rw-r--r--python/python3-janus/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/python3-janus/README b/python/python3-janus/README
new file mode 100644
index 0000000000..0c9abca713
--- /dev/null
+++ b/python/python3-janus/README
@@ -0,0 +1,9 @@
+Mixed sync-async queue, supposed to be used for communicating between
+classic synchronous (threaded) code and asynchronous (in terms of
+asyncio) one.
+
+Like Janus god the queue object from the library has two faces:
+synchronous and asynchronous interface.
+
+Synchronous is fully compatible with standard queue, asynchronous one
+follows asyncio queue design.