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 System;
10 : using Cqrs.Azure.ServiceBus;
11 : using Cqrs.Commands;
12 : using Ninject.Modules;
13 :
14 : namespace Cqrs.Azure.EventHub.CommandBus.Configuration
15 : {
16 : /// <summary>
17 : /// A <see cref="INinjectModule"/> that wires up <see cref="AzureCommandBusReceiver{TAuthenticationToken}"/> as the <see cref="ICommandReceiver"/> and other require components.
18 : /// </summary>
19 : /// <typeparam name="TAuthenticationToken">The <see cref="Type"/> of the authentication token.</typeparam>
20 : [Obsolete("Use AzureCommandHubReceiverModule")]
21 : public class AzureCommandBusReceiverModule<TAuthenticationToken> : AzureCommandHubReceiverModule<TAuthenticationToken>
22 1 : {
23 : }
24 : }
|