AZ-204 · Question #90
A company is implementing a publish-subscribe (Pub/Sub) messaging component by using Azure Service Bus. You are developing the first subscription application. In the Azure portal you see that…
The correct answer is C. subscriptionClient.RegisterMessageHandler(ProcessMessagesAsync, messageHandlerOptions). Using topic client, call RegisterMessageHandler which is used to receive messages continuously from the entity. It registers a message handler and begins a new thread to receive messages. This handler is waited on every time a new message is received by the receiver…
Question
Options
- Aawait subscriptionClient.CloseAsync();
- Bawait subscriptionClient.AddRuleAsync(new RuleDescription (RuleDescription.DefaultRuleName,
- CsubscriptionClient.RegisterMessageHandler(ProcessMessagesAsync, messageHandlerOptions);
- DsubscriptionClient = new SubscriptionClient(ServiceBusConnectionString, TopicName,
How the community answered
(34 responses)- A9% (3)
- B3% (1)
- C74% (25)
- D15% (5)
Explanation
Using topic client, call RegisterMessageHandler which is used to receive messages continuously from the entity. It registers a message handler and begins a new thread to receive messages. This handler is waited on every time a new message is received by the receiver. subscriptionClient.RegisterMessageHandler(ReceiveMessagesAsync, messageHandlerOptions);
Topics
Community Discussion
No community discussion yet for this question.