forked from ICESI-Training/Rabbitmqtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasicClient.py
31 lines (21 loc) · 849 Bytes
/
basicClient.py
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
"""
Basic AMQP consumer
only produces a "hello world" message
from Rabbitmq tutorials
Modified by JMA.
"""
import pika
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost')) # connect to server
channel = connection.channel() # create a communication channel
channel.queue_declare(queue='hello') # queue declaration
def callback(ch, method, properties, body):
"""
the callback method defines what to do when a message arrives
"""
print(" [x] Received %r" % body)
channel.basic_consume( # how to consume the message
queue='hello', # which queue it will listen?
on_message_callback=callback, # Which method should be called on message arrival
auto_ack=True) # automatic acknowledgment activated.
print(' [*] Waiting for messages. To exit press CTRL+C')
channel.start_consuming() # initialize the consumer