Route events to eventhub EventProcessor
I have events of different types. For example, some data is telemetry data, some is error information etc. I thought it would be a good idea to create several IEventProcessor implementations, one for each event type. So each implementation will handle the event differently. Like writing to file or to database. What's the best way to route events to a specific EventProcessor? Should I let an EventProcessor monitor a specific partitionkey and if so, how? Should I use the constructor of the EventProcessorHost that lets me specify a consumergroupname? If so, how can I send to a specific