summaryrefslogtreecommitdiff
path: root/kombu/transport/memory.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/transport/memory.py')
-rw-r--r--kombu/transport/memory.py24
1 files changed, 23 insertions, 1 deletions
diff --git a/kombu/transport/memory.py b/kombu/transport/memory.py
index f408b1fe..72023e9e 100644
--- a/kombu/transport/memory.py
+++ b/kombu/transport/memory.py
@@ -1,4 +1,26 @@
-"""In-memory transport."""
+"""In-memory transport module for Kombu.
+
+Simple transport using memory for storing messages.
+Messages can be passed only between threads.
+
+Features
+========
+* Type: Virtual
+* Supports Direct: Yes
+* Supports Topic: Yes
+* Supports Fanout: No
+* Supports Priority: No
+* Supports TTL: Yes
+
+Connection String
+=================
+Connection string is in the following format:
+
+.. code-block::
+
+ memory://
+
+"""
from queue import Queue