4#include <unordered_map>
11std::unordered_map<ArtifactKey, std::string>
17std::unordered_map<ArtifactKey, std::string>
24 const std::string &tileset_name,
const std::unordered_map<ArtifactKey, std::string> &checksums)
const
std::unordered_map< ArtifactKey, std::string > load_cached_tileset_checksums(const std::string &tileset_name) const override
Loads the cached checksums for the given Tileset.
std::unordered_map< ArtifactKey, std::string > compute_tileset_artifact_checksums(const std::string &tileset_name) const override
Computes checksums for the artifacts that belong to the given Tileset.
Result< void > cache_tileset_checksums(const std::string &tileset_name, const std::unordered_map< ArtifactKey, std::string > &checksums) const override
Caches checksums for the given Tileset to persistent storage.
std::expected< T, E > Result
A result with some type T on success, otherwise an error of type E.