A lot of Azure documentation points to the following sample for scaling out processing of events received from an Event Hub:
https://code.msdn.microsoft.com/windowsazure/Service-Bus-Event-Hub-45f43fc3. This sample is a console app. I'd like to process events in Worker Role instances on an Azure Cloud Service. What do I need to do in the OnStart(), Run() and OnStop()
methods of the Worker Role to get the event processing going? Thanks!
↧