summaryrefslogtreecommitdiff
path: root/demo3/ReadMe.txt
diff options
context:
space:
mode:
Diffstat (limited to 'demo3/ReadMe.txt')
-rw-r--r--demo3/ReadMe.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/demo3/ReadMe.txt b/demo3/ReadMe.txt
new file mode 100644
index 0000000..16f1fc5
--- /dev/null
+++ b/demo3/ReadMe.txt
@@ -0,0 +1,12 @@
+These scripts demonstrate four message queue notification techniques.
+
+All of demos ask you to enter a message. That message is then sent to the
+queue and received in a notification handler and printed to stdout.
+
+- one_shot_signal.py and one_shot_thread.py receive their notifications via a
+signal and thread, respectively. After one message & notification, the demo
+exits.
+
+- repeating_signal.py and repeating_thread.py are similar, except that they
+re-register for notifications in their notification handler so you can
+enter as many messages as you like.