forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gossip_digest_ack.hh
54 lines (42 loc) · 1.29 KB
/
gossip_digest_ack.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
47
48
49
50
51
52
53
54
/*
* 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"
#include "utils/chunked_vector.hh"
namespace gms {
/**
* This ack gets sent out as a result of the receipt of a GossipDigestSynMessage by an
* endpoint. This is the 2 stage of the 3 way messaging in the Gossip protocol.
*/
class gossip_digest_ack {
private:
using inet_address = gms::inet_address;
utils::chunked_vector<gossip_digest> _digests;
std::map<inet_address, endpoint_state> _map;
public:
gossip_digest_ack() {
}
gossip_digest_ack(utils::chunked_vector<gossip_digest> d, std::map<inet_address, endpoint_state> m)
: _digests(std::move(d))
, _map(std::move(m)) {
}
const utils::chunked_vector<gossip_digest>& get_gossip_digest_list() const {
return _digests;
}
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_ack& ack);
};
}