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

#include <mutex>
#include <set>

typedef struct uv_async_s uv_async_t;

namespace mbgl {

class NetworkStatus {
public:
    static void Reachable();

    static void Subscribe(uv_async_t *async);
    static void Unsubscribe(uv_async_t *async);

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

}

#endif