summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rwxr-xr-xpython/hello-world5
-rw-r--r--python/qpid/client.py3
2 files changed, 8 insertions, 0 deletions
diff --git a/python/hello-world b/python/hello-world
index fd712d324b..823e395b2e 100755
--- a/python/hello-world
+++ b/python/hello-world
@@ -12,3 +12,8 @@ ch.queue_bind(exchange="amq.direct", queue="test", routing_key="test")
ch.message_consume(queue="test", destination="test")
ch.message_transfer(destination="amq.direct", routing_key="test",
body="hello world")
+msg = client.queue("test").get()
+print msg
+msg.ok()
+import time
+time.sleep(3)
diff --git a/python/qpid/client.py b/python/qpid/client.py
index 3083cd4933..34d7790c39 100644
--- a/python/qpid/client.py
+++ b/python/qpid/client.py
@@ -100,6 +100,9 @@ class ClientDelegate(Delegate):
msg.tune_ok(*msg.frame.args)
self.client.started.set()
+ def message_transfer(self, ch, msg):
+ self.client.queue(msg.destination).put(msg)
+
def basic_deliver(self, ch, msg):
self.client.queue(msg.consumer_tag).put(msg)