aboutsummaryrefslogtreecommitdiff
path: root/zenstore/include
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-05-25 12:54:06 +0200
committerStefan Boberg <[email protected]>2021-05-25 12:54:06 +0200
commite9a1089cfb918a7790503309726d9b6cd5004c39 (patch)
tree93b4b20b2c19b2c0bb80a7862f3ea7d73c80bffc /zenstore/include
parentStructured cache now verifies attachment payloads (diff)
downloadzen-e9a1089cfb918a7790503309726d9b6cd5004c39.tar.xz
zen-e9a1089cfb918a7790503309726d9b6cd5004c39.zip
Removed pointer-based InsertChunk from CAS store interface.
All code must now use the IoBuffer path
Diffstat (limited to 'zenstore/include')
-rw-r--r--zenstore/include/zenstore/CAS.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/zenstore/include/zenstore/CAS.h b/zenstore/include/zenstore/CAS.h
index 9c569f2aa..3f3f3007d 100644
--- a/zenstore/include/zenstore/CAS.h
+++ b/zenstore/include/zenstore/CAS.h
@@ -50,7 +50,6 @@ public:
};
virtual void Initialize(const CasStoreConfiguration& Config) = 0;
- virtual InsertResult InsertChunk(const void* ChunkData, size_t ChunkSize, const IoHash& ChunkHash) = 0;
virtual InsertResult InsertChunk(IoBuffer Data, const IoHash& ChunkHash) = 0;
virtual IoBuffer FindChunk(const IoHash& ChunkHash) = 0;