aboutsummaryrefslogtreecommitdiff
path: root/plugins/ObjectCacheServer/src/ICacheStore.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-23 15:43:50 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-23 15:43:50 -0500
commita481d63f964a5d5204cac2e95141f37f9a28d573 (patch)
tree3e699bb0b1885355346c743b6d1bf2c8403dd731 /plugins/ObjectCacheServer/src/ICacheStore.cs
parentc0e2a71b7b4081117d87c2c34c1b2afb8d511732 (diff)
cache extension api tweaks
Diffstat (limited to 'plugins/ObjectCacheServer/src/ICacheStore.cs')
-rw-r--r--plugins/ObjectCacheServer/src/ICacheStore.cs4
1 files changed, 2 insertions, 2 deletions
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
/// <param name="state">The state parameter to pass to the data callback</param>
/// <param name="token">A token to cancel the async operation</param>
/// <returns>A value task that represents the async operation</returns>
- ValueTask AddOrUpdateBlobAsync<T>(string objectId, string? alternateId, ObjectDataReader<T> bodyData, T state, CancellationToken token = default);
+ ValueTask AddOrUpdateBlobAsync<T>(string objectId, string? alternateId, ObjectDataGet<T> bodyData, T state, CancellationToken token = default);
/// <summary>
/// Clears all items from the store