forked from halfgaar/FlashMQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
retainedmessage.h
46 lines (34 loc) · 927 Bytes
/
retainedmessage.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
36
37
38
39
40
41
42
43
44
45
46
/*
This file is part of FlashMQ (https://www.flashmq.org)
Copyright (C) 2021-2023 Wiebe Cazemier
FlashMQ is free software: you can redistribute it and/or modify
it under the terms of The Open Software License 3.0 (OSL-3.0).
See LICENSE for license details.
*/
#ifndef RETAINEDMESSAGE_H
#define RETAINEDMESSAGE_H
#include <string>
#include "types.h"
struct RetainedMessage
{
Publish publish;
RetainedMessage(const Publish &publish);
bool operator==(const RetainedMessage &rhs) const;
bool empty() const;
uint32_t getSize() const;
bool hasExpired() const;
};
namespace std {
template <>
struct hash<RetainedMessage>
{
std::size_t operator()(const RetainedMessage& k) const
{
using std::size_t;
using std::hash;
using std::string;
return hash<string>()(k.publish.topic);
}
};
}
#endif // RETAINEDMESSAGE_H