This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/storage/pinger.hpp
Viktor Govako 67a8fb1fba Fixed possible races in pinger.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
2021-08-20 20:36:48 +02:00

17 lines
348 B
C++

#pragma once
#include "platform/safe_callback.hpp"
#include <string>
#include <vector>
namespace storage
{
class Pinger
{
public:
using Endpoints = std::vector<std::string>;
// Returns list of available endpoints. Works synchronously.
static Endpoints ExcludeUnavailableAndSortEndpoints(Endpoints const & urls);
};
} // namespace storage