You are developing a messaging solution to integrate two applications named WeatherSummary and
WeatherDetails. The WeatherSummary application displays a summary of weather information for major
cities. The WeatherDetails application displays weather details for a specific city.
You need to ensure that the WeatherDetails application displays the weather details for the city that the user
selects in the WeatherSummary application.
What should you do?
A.
Create an Azure Service Bus Queue communication. In the WeatherDetails application, implement the
PeekLock method.
B.
Create an Azure Service Bus Topics object. In the WeatherDetails application, create a filter.
C.
Create an Azure Service Bus Relay object. In the WeatherDetails application, create a filter.
D.
Create an Azure Service Bus Queue communication. In the WeatherDetails application, implement the
ReceiveAndDelete method.
I think you should to use a Azure Service Bus Queue because the communication should be only in one direction. Summary -> Detail.
Azure Service Bus Relay is for bi-directional communications and Azure Service Bus Topics is for multiple listeners.
I dont know between A or D. I would choose A, because each message is removed from the queue when someone take it automatically.