solace-samples-python
solace-samples-python copied to clipboard
[Feature]: request and response pattern
Feature Description
i'm using this user property to send response to mqtt ios client in mqtt we have responseTopic so how to read the response topic in python side
.with_property("responseTopic", response_topic)
response_topic = request.get_property("responseTopic")
to set the user property:
builder = (
self.messaging_service.message_builder()
.with_correlation_id(correlation_id)
.with_property("processedBy", "PythonReplier")
.with_property("responseTopic", response_topic)
)\
here we are doing trying to use reply(consume) from one topic and then send response to another topic
Use Case
can we use this property for request and response pattern .with_property("responseTopic", response_topic)
Proposed Solution
No response