You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Commits log entries into the underlying storage and marks these entries as committed.
50
50
/// </summary>
51
51
/// <remarks>
52
-
/// This method should updates cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
52
+
/// This method should update cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
53
53
/// Additionally, it may force log compaction and squash all committed entries into single entry called snapshot.
54
54
/// </remarks>
55
55
/// <param name="endIndex">The index of the last entry to commit, inclusively.</param>
/// Commits log entries into the underlying storage and marks these entries as committed.
63
63
/// </summary>
64
64
/// <remarks>
65
-
/// This method should updates cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
65
+
/// This method should update cached value provided by method <see cref="LastCommittedEntryIndex"/> called with argument of value <see langword="true"/>.
66
66
/// Additionally, it may force log compaction and squash all committed entries into single entry called snapshot.
67
67
/// </remarks>
68
68
/// <param name="token">The token that can be used to cancel the operation.</param>
/// This method may return less entries than <c>endIndex - startIndex + 1</c>. It may happen if the requested entries are committed entries and squashed into the single entry called snapshot.
110
+
/// This method may return fewer entries than <c>endIndex - startIndex + 1</c>. It may happen if the requested entries are committed entries and squashed into the single entry called snapshot.
111
111
/// In this case the first entry in the collection is a snapshot entry. Additionally, the caller must call <see cref="IDisposable.Dispose"/> to release resources associated
0 commit comments