forked from facebook/openr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KvStorePoller.h
35 lines (26 loc) · 978 Bytes
/
KvStorePoller.h
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
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <folly/SocketAddress.h>
#include <openr/if/gen-cpp2/Types_types.h>
namespace openr {
class KvStorePoller {
public:
/* implicit */ KvStorePoller(std::vector<folly::SocketAddress>& sockAddrs);
~KvStorePoller() {}
std::pair<
std::optional<std::unordered_map<std::string, thrift::AdjacencyDatabase>>,
std::vector<folly::SocketAddress> /* unreachable url */>
getAdjacencyDatabases(std::chrono::milliseconds pollTimeout);
std::pair<
std::optional<std::unordered_map<std::string, thrift::PrefixDatabase>>,
std::vector<folly::SocketAddress> /* unreachable url */>
getPrefixDatabases(std::chrono::milliseconds pollTimeout);
private:
std::vector<folly::SocketAddress> sockAddrs_;
}; // class KvStorePoller
} // namespace openr