Skip to content

Commit

Permalink
Method parameters of the defined contract for passive event storage s…
Browse files Browse the repository at this point in the history
…hould have clear name
  • Loading branch information
Sergey Borisov authored and Sergey Borisov committed Jan 30, 2018
1 parent 5e33019 commit 72af893
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,9 @@ public interface IPassiveEventStore
/// The only requirement is that the implementation should return at least one <see cref="Transaction"/>,
/// if there are any transactions having checkpoint (<see cref="Transaction.Checkpoint"/>) bigger than given one.
/// </remarks>
/// <param name="checkpoint">
/// <param name="previousCheckpoint">
/// Determines the value of the <see cref="Transaction.Checkpoint"/>, next to which <see cref="Transaction"/>s should be loaded from the storage.
/// </param>
IEnumerable<Transaction> GetFrom(long? checkpoint);
IEnumerable<Transaction> GetFrom(long? previousCheckpoint);
}
}

0 comments on commit 72af893

Please sign in to comment.