Add fetchBatch Backend interface

This commit is contained in:
Vinnie Falco
2015-03-18 12:23:36 -07:00
committed by Nik Bougalis
parent 41c68f4bbc
commit 1b49776819
6 changed files with 75 additions and 0 deletions

View File

@@ -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)
{