forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gossip_digest_ack2.hh
46 lines (37 loc) · 1.03 KB
/
gossip_digest_ack2.hh
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
38
39
40
41
42
43
44
45
46
/*
*
* Modified by ScyllaDB
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#pragma once
#include "utils/serialization.hh"
#include "gms/gossip_digest.hh"
#include "gms/inet_address.hh"
#include "gms/endpoint_state.hh"
namespace gms {
/**
* This ack gets sent out as a result of the receipt of a GossipDigestAckMessage. This the
* last stage of the 3 way messaging of the Gossip protocol.
*/
class gossip_digest_ack2 {
private:
using inet_address = gms::inet_address;
std::map<inet_address, endpoint_state> _map;
public:
gossip_digest_ack2() {
}
gossip_digest_ack2(std::map<inet_address, endpoint_state> m)
: _map(std::move(m)) {
}
std::map<inet_address, endpoint_state>& get_endpoint_state_map() {
return _map;
}
const std::map<inet_address, endpoint_state>& get_endpoint_state_map() const {
return _map;
}
friend std::ostream& operator<<(std::ostream& os, const gossip_digest_ack2& ack2);
};
} // gms