Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using Cqrs.Configuration;
10 : using Cqrs.Messages;
11 :
12 : namespace Cqrs.Bus
13 : {
14 : /// <summary>
15 : /// Information about a <see cref="Route"/> delegate.
16 : /// </summary>
17 : /// <remarks>Remarkably similar to <see cref="HandlerDelegate"/></remarks>
18 : public class RouteHandlerDelegate : HandlerDelegate<IMessage>
19 1 : {
20 : }
21 : }
|