diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Database.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Database.hpp b/include/Database.hpp index bde4d5a..bfc3021 100644 --- a/include/Database.hpp +++ b/include/Database.hpp @@ -29,8 +29,8 @@ namespace odhtdb ntp::NtpTimestamp getSyncedTimestampUtc() const; StagedCreateObject deserializeCreateRequest(const std::shared_ptr<dht::Value> &value); StagedAddObject deserializeAddRequest(const std::shared_ptr<dht::Value> &value); - bool listenCreateData(const std::vector<std::shared_ptr<dht::Value>> &values); - bool listenAddData(const std::vector<std::shared_ptr<dht::Value>> &values); + bool listenCreateData(std::shared_ptr<dht::Value> value); + bool listenAddData(std::shared_ptr<dht::Value> value); private: dht::DhtRunner node; std::vector<StagedCreateObject> stagedCreateObjects; |