Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BitFaster.Caching/IExpiryCalculator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ public interface IExpiryCalculator<K, V>
Duration GetExpireAfterCreate(K key, V value);

/// <summary>
/// Specify the time to expire after an entry is read. The current time to expire may be
/// Specify the time to expire after an entry is read. The current time to expire may
/// be returned to not modify the expiration time.
/// </summary>
Duration GetExpireAfterRead(K key, V value, Duration current);

/// <summary>
/// Specify the time to expire after an entry is updated.The current time to expire may be
/// Specify the time to expire after an entry is updated.The current time to expire may
/// be returned to not modify the expiration time.
/// </summary>
Duration GetExpireAfterUpdate(K key, V value, Duration current);
Expand Down
Loading