Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : namespace Cqrs.Events
10 : {
11 : public interface IEventReceiver
12 : {
13 0 : void Start();
14 : }
15 :
16 : public interface IEventReceiver<TAuthenticationToken>
17 : : IEventReceiver
18 : {
19 0 : bool? ReceiveEvent(IEvent<TAuthenticationToken> @event);
20 : }
21 : }
|