Skip to content

Commit

Permalink
All interfaces and delegates should be internal so that no collisions…
Browse files Browse the repository at this point in the history
… occur (#11)
  • Loading branch information
corvansteijn authored and dennisdoomen committed May 23, 2018
1 parent 10beddc commit 84bf4e2
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,12 @@ public void Dispose()
/// Represents an event store which does not actively push transactions to LiquidProjections and which
/// requires polling.
/// </summary>
public interface IPassiveEventStore
#if LIQUIDPROJECTIONS_BUILD_TIME
public
#else
internal
#endif
interface IPassiveEventStore
{
/// <summary>
/// Loads <see cref="Transaction"/>s from the storage in the order that they should be projected (should be the same order that they were persisted).
Expand All @@ -454,5 +459,10 @@ public interface IPassiveEventStore
/// <summary>
/// Defines a method that can be used to route logging to the logging framework of your choice.
/// </summary>
public delegate void LogMessage(Func<string> message);
#if LIQUIDPROJECTIONS_BUILD_TIME
public
#else
internal
#endif
delegate void LogMessage(Func<string> message);
}

0 comments on commit 84bf4e2

Please sign in to comment.