mirror of
https://github.com/NixOS/nix
synced 2025-06-25 23:11:16 +02:00
Simplify the callback mechanism
This commit is contained in:
parent
1672bcd230
commit
81ea8bd5ce
16 changed files with 152 additions and 180 deletions
|
@ -365,10 +365,9 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore
|
|||
}
|
||||
|
||||
void getFile(const std::string & path,
|
||||
std::function<void(std::shared_ptr<std::string>)> success,
|
||||
std::function<void(std::exception_ptr exc)> failure) override
|
||||
Callback<std::shared_ptr<std::string>> callback) override
|
||||
{
|
||||
sync2async<std::shared_ptr<std::string>>(success, failure, [&]() {
|
||||
try {
|
||||
stats.get++;
|
||||
|
||||
auto res = s3Helper.getObject(bucketName, path);
|
||||
|
@ -380,8 +379,8 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore
|
|||
printTalkative("downloaded 's3://%s/%s' (%d bytes) in %d ms",
|
||||
bucketName, path, res.data->size(), res.durationMs);
|
||||
|
||||
return res.data;
|
||||
});
|
||||
callback(std::move(res.data));
|
||||
} catch (...) { callback.rethrow(); }
|
||||
}
|
||||
|
||||
PathSet queryAllValidPaths() override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue