summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/network_status.hpp
blob: 42027936612f7d87ee81ec903a150d97f62c5dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef MBGL_STORAGE_NETWORK_STATUS
#define MBGL_STORAGE_NETWORK_STATUS

#include <atomic>
#include <mutex>
#include <set>

namespace mbgl {

namespace util {
class AsyncTask;
} // namespace util

class NetworkStatus {
public:
    enum class Status : uint8_t {
        Online,
        Offline,
    };

    Status Get();
    void Set(Status);

    static void Reachable();

    static void Subscribe(util::AsyncTask* async);
    static void Unsubscribe(util::AsyncTask* async);

private:
    static std::atomic<bool> online;
    static std::mutex mtx;
    static std::set<util::AsyncTask*> observers;
};

} // namespace mbgl

#endif