[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
Hey @sowjanya1117 - have you checked the request reply samples in this repo https://github.com/SolaceSamples/solace-samples-python/blob/main/patterns/direct_requestor.py https://github.com/SolaceSamples/solace-samples-python/blob/main/patterns/direct_replier.py
This might give you an idea on how r/r is implemented with the solace Python API