X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fasyncdummystorage.cpp;h=db227cdcb20a1bc9e28ed234eaca4921e110d6f1;hb=refs%2Fchanges%2F28%2F12728%2F4;hp=24e85a605271dbe4e37b68fac9c2a41b4ac8f65d;hpb=ef2bf51d04aaf01fa0cabdcaf905b23423067662;p=ric-plt%2Fsdl.git diff --git a/src/asyncdummystorage.cpp b/src/asyncdummystorage.cpp index 24e85a6..db227cd 100644 --- a/src/asyncdummystorage.cpp +++ b/src/asyncdummystorage.cpp @@ -14,6 +14,11 @@ limitations under the License. */ +/* + * This source code is part of the near-RT RIC (RAN Intelligent Controller) + * platform project (RICP). +*/ + #include "private/asyncdummystorage.hpp" #include #include "private/engine.hpp" @@ -80,6 +85,11 @@ void AsyncDummyStorage::findKeysAsync(const Namespace&, const std::string&, cons postCallback(std::bind(findKeysAck, std::error_code(), Keys())); } +void AsyncDummyStorage::listKeys(const Namespace&, const std::string&, const FindKeysAck& findKeysAck) +{ + postCallback(std::bind(findKeysAck, std::error_code(), Keys())); +} + void AsyncDummyStorage::removeAllAsync(const Namespace&, const ModifyAck& modifyAck) { postCallback(std::bind(modifyAck, std::error_code()));