-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReliability.h
39 lines (29 loc) · 816 Bytes
/
Reliability.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
#ifndef BaseLib_Policy_Reliability_h_IsIncluded
#define BaseLib_Policy_Reliability_h_IsIncluded
#include"BaseLib/Templates/BaseTypes.h"
#include"BaseLib/Export.h"
namespace BaseLib { namespace Policy
{
enum class DLL_STATE ReliabilityKind
{
UNKNOWN = 0,
BestEffort = 1,
Reliable = 3
};
class DLL_STATE Reliability
: public Templates::ComparableImmutableType<ReliabilityKind>
{
public:
Reliability(ReliabilityKind kind = ReliabilityKind::Reliable);
virtual ~Reliability();
ReliabilityKind Kind() const;
bool IsBestEffort() const;
bool IsReliable() const;
// --------------------------------------------
// Static constructors
// --------------------------------------------
static Reliability BestEffort();
static Reliability Reliable();
};
}}
#endif