You need to recommend a technology for processing customer pickup requests.Which technology should you recommend?Service Bus queues are part of a broader Azure messaging infrastructure that supports queuing as well as publish/subscribe, Web service remoting, and integration patterns.Service Bus Queue support Push-style API (while Azure Queue messaging does not).Incorrect:Not A: Notification Hub is only used to push notification, not for processing requests.Not B Asa solution architect/developer, you should consider using Azure Queues when:* Your application must store over 80 GB of messages in a queue, where the messages have a lifetime shorter than 7 days.* Your application wants to track progress for processing a message inside of the queue. This is useful if the worker processing a message crashes. A subsequent worker can then use that information to continue from where the prior worker left off.You require server side logs of all of the transactions executed against your queues.Not C: To process the messages we do not need push notification.Reference: Azure Queues and Service Bus Queues – Compared and Contrastedhttps://msdn.microsoft.com/en-us/library/azure/hh767287.aspx
Question:
Which technology should you recommend?
Options:
Notification hub
Queue messaging
Mobile Service with push notifications
Service Bus messaging
Correct Answer
The Correct Answer for this Question is
Service Bus messaging