/// <inheritdoc /> public Task <BoolResult> UpdateBulkAsync( Context context, IReadOnlyList <ContentHashWithSizeAndLocations> contentHashesWithSizeAndLocations, CancellationToken cts, UrgencyHint urgencyHint, LocationStoreOption locationStoreOption) => null;
/// <inheritdoc /> public Task <BoolResult> UpdateBulkAsync(Context context, IReadOnlyList <ContentHashWithSizeAndLocations> contentHashesWithSizeAndLocations, CancellationToken cts, UrgencyHint urgencyHint, LocationStoreOption locationStoreOption) { Contract.Assert(_redisContentLocationStore != null, "Read or Write mode should support ContentLocationMode.Redis."); return(_redisContentLocationStore.UpdateBulkAsync(context, contentHashesWithSizeAndLocations, cts, urgencyHint, locationStoreOption)); }