diff options
author | m-milkin <m-milkin@yandex-team.com> | 2023-03-24 15:34:13 +0300 |
---|---|---|
committer | m-milkin <m-milkin@yandex-team.com> | 2023-03-24 15:34:13 +0300 |
commit | 387c914d75e04773da90dcf623982a47909c19d2 (patch) | |
tree | 2aee2c5f92c70eac1e34206307d910c8c360f585 /library/cpp/resource/registry.h | |
parent | f8d946ba7430c3864f0a97d42fa295d19ed40a3e (diff) | |
download | ydb-387c914d75e04773da90dcf623982a47909c19d2.tar.gz |
Filter searcher props by black list. Add NResource::Has()
Diffstat (limited to 'library/cpp/resource/registry.h')
-rw-r--r-- | library/cpp/resource/registry.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/cpp/resource/registry.h b/library/cpp/resource/registry.h index fe67702cbc2..a2d0ef768df 100644 --- a/library/cpp/resource/registry.h +++ b/library/cpp/resource/registry.h @@ -17,6 +17,7 @@ namespace NResource { class IStore { public: virtual void Store(const TStringBuf key, const TStringBuf data) = 0; + virtual bool Has(const TStringBuf key) const = 0; virtual bool FindExact(const TStringBuf key, TString* out) const = 0; virtual void FindMatch(const TStringBuf subkey, IMatch& cb) const = 0; virtual size_t Count() const noexcept = 0; |