Ejemplo n.º 1
0
 public void Unsubscribe <TEvent, TEventHandler>(string routingKey)
     where TEventHandler : IEventHandler <TEvent>
 {
     _subscriptionManager.RemoveSubscription <TEvent, TEventHandler>(routingKey);
 }
Ejemplo n.º 2
0
 public void Unsubscribe <TEvent, TEventHandler>()
     where TEvent : Event
     where TEventHandler : IEventHandler <TEvent>
 {
     _subscriptionManager.RemoveSubscription <TEvent, TEventHandler>();
 }