This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kannanf9t
Recipients christian.heimes, kannanf9t
Date 2020-10-27.17:44:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603820653.69.0.460169502782.issue42166@roundup.psfhosted.org>
In-reply-to
Content
As you said we are using a threaded consumers in which main thread will create connection and listener thread will receive message.
We are passing main thread object to listener to acknowledge the message using connection object (conn.ack)

in connection class
self.conn = activemq stomp connection
self.listener_obj = ConsumerListener(self)

in listener class
self.conn = conn_obj_from_main_thread
self.conn.ack(msg_id, subscription)
History
Date User Action Args
2020-10-27 17:44:13kannanf9tsetrecipients: + kannanf9t, christian.heimes
2020-10-27 17:44:13kannanf9tsetmessageid: <1603820653.69.0.460169502782.issue42166@roundup.psfhosted.org>
2020-10-27 17:44:13kannanf9tlinkissue42166 messages
2020-10-27 17:44:13kannanf9tcreate