示例#1
0
        /// <summary>
        /// Get the specified commit sequence range starting after <paramref name="skip"/> and returing <paramref name="take"/> commits.
        /// </summary>
        /// <param name="skip">The commit sequence lower bound (exclusive).</param>
        /// <param name="take">The number of commits to include in the result.</param>
        public IReadOnlyList <Commit> GetRange(Int64 skip, Int64 take)
        {
            var result = eventStore.GetRange(skip, take);

            statistics.IncrementQueryCount();

            return(result);
        }