Python+stomp+activemq

Source: Internet
Author: User
Tags stomp



Python can also connect to MQ, taking ACTIVEMQ as an example to install stomp.py:



https://github.com/jasonrbriggs/stomp.py



Install after download:



Python setup.py Install



Very simple, then a simple example:


import time
import sys
import stomp

class MyListener (object):
     def on_error (self, headers, message):
         print (‘received an error% s’% message)
     def on_message (self, headers, message):
         print (‘received a message% s’% message)

#The connection code of the official example is also behind, and it is now divided into protocol versions
conn = stomp.Connection10 ([(‘ip ...‘, 61613)])
conn.set_listener (‘‘, MyListener ())
conn.start ()
conn.connect ()

conn.subscribe (destination = ‘/ queue / test’, id = 1, ack = ‘auto’)
#Note that it is problematic to send a message like this in the official example
# conn.send (body = ‘hello, garfield! this is‘ .join (sys.argv [1:]), destination = ‘/ queue / test’)
conn.send (body = ‘hello, garfield!’, destination = ‘/ queue / test’)

time.sleep (2)
conn.disconnect () 


OK, you can send and receive messages!



Python+stomp+activemq


Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.