GithubHelp home page GithubHelp logo

Comments (4)

nikipore avatar nikipore commented on August 11, 2024

What exactly is your question or problem? Please post non-working Python (not Java) code.

from stompest.

wcc526 avatar wcc526 commented on August 11, 2024
from stompest.config import StompConfig
from stompest.protocol import StompSpec
from stompest.sync import Stomp
from stompest.protocol import StompParser
class ActiveMQConsumer(object):
    def __init__(self, dest, uri, login, passcode, message_type=None):
        self.dest = dest
        self.config = StompConfig(uri=uri, login=login, passcode=passcode,version='1.1')
        self.message_type = message_type
        self.client = Stomp(self.config)
        self.client.connect()

        headers = {
            'ack': 'auto',
            'id': 'required-for-STOMP-1.1',
            'exclusive':'true'
        }
        if message_type == 'MapMessage':
            headers['transformation'] = 'jms-map-json'
        self.client.subscribe(self.dest, headers)

    def __map_json_to_dict(self, body):
        ret_dict = {}
        body_dict = json.loads(body)
        for entry in body_dict['map']['entry']:
            key = entry['string'][0]
            value = entry['string'][1]
            ret_dict[key] = value
        return ret_dict

    def recv(self):
        if self.client.canRead(1):
            self.frame = self.client.receiveFrame()
            # self.client.ack(self.frame)
            if self.message_type == 'MapMessage':
                body = self.__map_json_to_dict(self.frame.body)
            else:
                body = json.loads(self.frame.body)
            return body
        else:
            return None

    def ack(self):
        self.client.ack(self.frame)

    def __del__(self):
        self.client.disconnect()

from stompest.

wcc526 avatar wcc526 commented on August 11, 2024
 headers = {
        'ack': 'auto',
        'id': 'required-for-STOMP-1.1',
        'exclusive':'true'
    }

It does not work.

from stompest.

nikipore avatar nikipore commented on August 11, 2024

Well, exclusive is no supported option of the stompest failover protocol.

from stompest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.