You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anyone have an example how the broadcast request/response is working using CFXSDK library? So let's say a Areyouthererequest is sent.
Each endpoint would receive the Areyouthererequest through an exchange. Do i need to bind the exchange with the Queue? Where is it expected to reply with the AreyouThereReponse, what path should it follow? Please give me some idea
The text was updated successfully, but these errors were encountered:
quesGit
changed the title
Request/Response using RabbitMQ- Event not firing
Request/Response using RabbitMQ
Oct 6, 2021
Broadcast request/repsonse work from endpoint to endpoint with the help of broker. They are called requests but they are actually events requiring a response... i.e : AreyouThereRequest/Response.
On the sending side you need to add a publish channel using endpoint.AddPublishChannel() with the correct uri to reach the broker .i.e Publish Address (exchange name).
On the receiving side, you are suppossed to used OnCFXMessageReceived to receive the AreyouThereRequest message. Then this received can send the response back with endpoint.Publish the AreYouThereResponse message .
Hi all,
Anyone have an example how the broadcast request/response is working using CFXSDK library? So let's say a Areyouthererequest is sent.
Each endpoint would receive the Areyouthererequest through an exchange. Do i need to bind the exchange with the Queue? Where is it expected to reply with the AreyouThereReponse, what path should it follow? Please give me some idea
The text was updated successfully, but these errors were encountered: