diff --git a/Src/LiquidProjections.PollingEventStore/PollingEventStoreAdapter.cs b/Src/LiquidProjections.PollingEventStore/PollingEventStoreAdapter.cs index f36f108..fc542bc 100644 --- a/Src/LiquidProjections.PollingEventStore/PollingEventStoreAdapter.cs +++ b/Src/LiquidProjections.PollingEventStore/PollingEventStoreAdapter.cs @@ -440,6 +440,18 @@ public void Dispose() /// public interface IPassiveEventStore { - IEnumerable GetFrom(long? checkpoint); + /// + /// Loads s from the storage in the order that they should be projected (should be the same order that they were persisted). + /// + /// + /// The implementation is allowed to return just a limited subset of items at a time. + /// It is up to the implementation to decide how many items should be returned at a time. + /// The only requirement is that the implementation should return at least one , + /// if there are any transactions having checkpoint () bigger than given one. + /// + /// + /// Determines the value of the , next to which s should be loaded from the storage. + /// + IEnumerable GetFrom(long? previousCheckpoint); } }