X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fasyncdummystorage.cpp;fp=src%2Fasyncdummystorage.cpp;h=db227cdcb20a1bc9e28ed234eaca4921e110d6f1;hb=63869e10ac4d8572238989e1b582c0314da91f9c;hp=c6ea1053c460cb6c5702520e99612b37d85cf090;hpb=69b0a71f5fe8825fa45ee9502a41fd8b465c44e0;p=ric-plt%2Fsdl.git diff --git a/src/asyncdummystorage.cpp b/src/asyncdummystorage.cpp index c6ea105..db227cd 100644 --- a/src/asyncdummystorage.cpp +++ b/src/asyncdummystorage.cpp @@ -85,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()));