mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
Add fetchBatch Backend interface
This commit is contained in:
committed by
Nik Bougalis
parent
41c68f4bbc
commit
1b49776819
@@ -53,6 +53,19 @@ public:
|
||||
return notFound;
|
||||
}
|
||||
|
||||
bool
|
||||
canFetchBatch() override
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<std::shared_ptr<NodeObject>>
|
||||
fetchBatch (std::size_t n, void const* const* keys) override
|
||||
{
|
||||
throw std::runtime_error("pure virtual called");
|
||||
return {};
|
||||
}
|
||||
|
||||
void
|
||||
store (NodeObject::ref object)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user