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 System.Collections.Generic;
11 : using Cqrs.Events;
12 :
13 : namespace Cqrs.Ninject.InProcess.EventStore
14 : {
15 : /// <summary>
16 : /// An <see cref="IEventStore{TAuthenticationToken}"/> that uses a local (non-static) <see cref="IDictionary{TKey,TValue}"/>.
17 : /// This does not manage memory in any way and will continue to grow. Mostly suitable for running tests or short lived processes.
18 : /// </summary>
19 : /// <typeparam name="TAuthenticationToken">The <see cref="Type"/> of the authentication token.</typeparam>
20 : [Obsolete("Use Cqrs.Events.InProcessEventStore<TAuthenticationToken> instead.")]
21 : public class InProcessEventStore<TAuthenticationToken> : Events.InProcessEventStore<TAuthenticationToken>
22 1 : {
23 : }
24 : }
|