public async Task Handle(SomeEventWeHandleViaMulticastAndCompetition busEvent)
 {
     MethodCallCounter.RecordCall <SomeMulticastEventHandler>(h => h.Handle(busEvent));
 }
Exemple #2
0
 public async Task Handle(SomeEventWeHandleViaMulticastAndCompetition busEvent)
 {
     MethodCallCounter.ForInstance(BusId).RecordCall <SomeCompetingEventHandler>(h => h.Handle(busEvent));
 }