From a481d63f964a5d5204cac2e95141f37f9a28d573 Mon Sep 17 00:00:00 2001 From: vnugent Date: Tue, 23 Jan 2024 15:43:50 -0500 Subject: cache extension api tweaks --- plugins/ObjectCacheServer/src/ICacheStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/ObjectCacheServer/src/ICacheStore.cs') diff --git a/plugins/ObjectCacheServer/src/ICacheStore.cs b/plugins/ObjectCacheServer/src/ICacheStore.cs index a638169..dcc9b6e 100644 --- a/plugins/ObjectCacheServer/src/ICacheStore.cs +++ b/plugins/ObjectCacheServer/src/ICacheStore.cs @@ -1,5 +1,5 @@ /* -* Copyright (c) 2023 Vaughn Nugent +* Copyright (c) 2024 Vaughn Nugent * * Library: VNLib * Package: ObjectCacheServer @@ -38,7 +38,7 @@ namespace VNLib.Data.Caching.ObjectCache.Server /// The state parameter to pass to the data callback /// A token to cancel the async operation /// A value task that represents the async operation - ValueTask AddOrUpdateBlobAsync(string objectId, string? alternateId, ObjectDataReader bodyData, T state, CancellationToken token = default); + ValueTask AddOrUpdateBlobAsync(string objectId, string? alternateId, ObjectDataGet bodyData, T state, CancellationToken token = default); /// /// Clears all items from the store -- cgit