aboutsummaryrefslogtreecommitdiff
path: root/plugins/ObjectCacheServer/src/ICachePeer.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-07-13 13:20:25 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-07-13 13:20:25 -0400
commit2f674e79d42e7d36225fa9ac7ecefbc5bc62d325 (patch)
treec58999489f5391bc044e7a9bb3e557afe2860415 /plugins/ObjectCacheServer/src/ICachePeer.cs
parent1a8ab1457244d15b19ddcc94958f645f5ec2abc7 (diff)
Checkpoint, kind of working clustering
Diffstat (limited to 'plugins/ObjectCacheServer/src/ICachePeer.cs')
-rw-r--r--plugins/ObjectCacheServer/src/ICachePeer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ObjectCacheServer/src/ICachePeer.cs b/plugins/ObjectCacheServer/src/ICachePeer.cs
index 97b406f..897655a 100644
--- a/plugins/ObjectCacheServer/src/ICachePeer.cs
+++ b/plugins/ObjectCacheServer/src/ICachePeer.cs
@@ -22,7 +22,7 @@
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
-using VNLib.Data.Caching.Extensions;
+using VNLib.Data.Caching.Extensions.Clustering;
namespace VNLib.Data.Caching.ObjectCache.Server
{
@@ -39,6 +39,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server
/// <summary>
/// An optional signed advertisment message for other peers
/// </summary>
- ICacheNodeAdvertisment? Advertisment { get; }
+ CacheNodeAdvertisment? Advertisment { get; }
}
}