Skip to content

Commit fc232c7

Browse files
committed
[Breaking]: rename parameter to align with all implementations.
1 parent b3d86a9 commit fc232c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Foundatio/Caching/ICacheClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public interface ICacheClient : IDisposable
2626
Task<long> SetIfHigherAsync(string key, long value, TimeSpan? expiresIn = null);
2727
Task<double> SetIfLowerAsync(string key, double value, TimeSpan? expiresIn = null);
2828
Task<long> SetIfLowerAsync(string key, long value, TimeSpan? expiresIn = null);
29-
Task<long> ListAddAsync<T>(string key, IEnumerable<T> value, TimeSpan? expiresIn = null);
30-
Task<long> ListRemoveAsync<T>(string key, IEnumerable<T> value, TimeSpan? expiresIn = null);
29+
Task<long> ListAddAsync<T>(string key, IEnumerable<T> values, TimeSpan? expiresIn = null);
30+
Task<long> ListRemoveAsync<T>(string key, IEnumerable<T> values, TimeSpan? expiresIn = null);
3131
Task<CacheValue<ICollection<T>>> GetListAsync<T>(string key, int? page = null, int pageSize = 100);
3232
}

0 commit comments

Comments
 (0)