Skip to content

Commit

Permalink
Sync pipeline with core, events no longer have to implement IEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Constantin committed Sep 26, 2011
1 parent 33e6679 commit a2419cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extensions/src/Ncqrs.EventBus/DefaultElementProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void Process(IProcessingElement processingElement)
_internalBus.Publish(typedElement.Event);
}

public void RegisterHandler<TEvent>(IEventHandler<TEvent> handler) where TEvent : IEvent
public void RegisterHandler<TEvent>(IEventHandler<TEvent> handler)
{
_internalBus.RegisterHandler(handler);
}
Expand Down

0 comments on commit a2419cd

Please sign in to comment.