conn = stomp.Connection ([(‘192.168.251.191‘, 61613)])
conn.set_listener (‘‘, MyListener ())
conn.start ()
conn.connect ()
# Note that the official example sends a message like this $ python simple.py hello world
# conn.send (body = ‘hello, garfield! this is‘ .join (sys.argv [1:]), destination = ‘/ queue / test’)
#Send a message to the queue
conn.send (body = ‘this is message’), destination = ‘/ queue / test’)
#Send a message to the subject
conn.send (body = ‘this is message’), destination = ‘/ topic / testTopic’)
#Accept messages from the queue
conn.subscribe (destination = ‘/ queue / test’, id = 1, ack = ‘auto’)
#Accept message from subject
conn.subscribe (destination = ‘/ topic / testTopic’, id = 1, ack = ‘auto’)
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.