summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/network_status.hpp
blob: a1c417c4cf61a384bef1135400b49f2d8629c8c4 (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
#ifndef MBGL_STORAGE_NETWORK_STATUS
#define MBGL_STORAGE_NETWORK_STATUS

#include <mutex>
#include <set>

namespace mbgl {

namespace util {
class AsyncTask;
}

class NetworkStatus {
public:
    static void Reachable();

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

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

}

#endif