summaryrefslogtreecommitdiff
path: root/python/examples/fanout/fanout_producer.py
blob: 3950ca6d2e98b032fdb729c9d19b9876550da9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
"""
 fanout_producer.py

 Publishes messages to an AMQP direct exchange, using
 the routing key "routing_key"
"""
import qpid
import sys
import os
from qpid.util import connect
from qpid.connection import Connection
from qpid.datatypes import Message, uuid4
from qpid.queue import Empty

#----- Initialization -----------------------------------

#  Set parameters for login

host="127.0.0.1"
port=5672
user="guest"
password="guest"

# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
if len(sys.argv) > 1 :
     host=sys.argv[1]
if len(sys.argv) > 2 :
     port=int(sys.argv[2])

#  Create a connection.
socket = connect(host, port)
connection = Connection (sock=socket)
connection.start()
session = connection.session(str(uuid4()))


#----- Publish some messages ------------------------------

# Create some messages and put them on the broker.

delivery_properties = session.delivery_properties(routing_key="routing_key")

for i in range(10):
     session.message_transfer(destination="amq.fanout", message=Message(delivery_properties,"message " + str(i)))

session.message_transfer(destination="amq.fanout", message=Message(delivery_properties, "That's all, folks!"))

#----- Cleanup --------------------------------------------

# Clean up before exiting so there are no open threads.

session.close(timeout=10)