Python Stomp activemq Client

Source: Internet
Author: User
Tags ack stomp
# coding = utf-8
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)
        time.sleep (2)


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’)

time.sleep (2)
conn.disconnect ()
python stomp activemq client
Related Article

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.