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 : namespace Cqrs.MongoDB.Events
10 : {
11 : /// <summary>
12 : /// A factory for getting connection strings and database names for Snapshot Store access.
13 : /// </summary>
14 : public interface IMongoDbSnapshotStoreConnectionStringFactory
15 : {
16 : /// <summary>
17 : /// Gets the current connection string.
18 : /// </summary>
19 1 : string GetSnapshotStoreConnectionString();
20 :
21 : /// <summary>
22 : /// Gets the current database name.
23 : /// </summary>
24 1 : string GetSnapshotStoreDatabaseName();
25 : }
26 : }
|