aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.hh
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2021-10-27 11:36:51 +0200
committerregnat <rg@regnat.ovh>2021-11-03 06:51:34 +0100
commit96670ed2163d3d1a296c9b053833362ec8c06985 (patch)
tree80aec4b3e054710b2ec97b8517543207e8b8e502 /src/libstore/local-store.hh
parent5b2aa61f1b8fe253c963874ccb4700f6ff99526e (diff)
Expose an async interface for `queryRealisation`
Doesn’t change much so far because everything is still using it synchronously, but should allow the binary cache to fetch stuff in parallel
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r--src/libstore/local-store.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh
index 301425eb1..b172e897a 100644
--- a/src/libstore/local-store.hh
+++ b/src/libstore/local-store.hh
@@ -207,7 +207,8 @@ public:
std::optional<const Realisation> queryRealisation_(State & state, const DrvOutput & id);
std::optional<std::pair<int64_t, Realisation>> queryRealisationCore_(State & state, const DrvOutput & id);
- std::optional<const Realisation> queryRealisation(const DrvOutput&) override;
+ void queryRealisationUncached(const DrvOutput&,
+ Callback<std::shared_ptr<const Realisation>> callback) noexcept override;
private: