LeviLamina
Loading...
Searching...
No Matches
Condition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet::RunLoop {
6
7class Condition {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 Condition& operator=(Condition const&);
17 Condition(Condition const&);
18 Condition();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI bool KeepGoing() const;
24
25 MCNAPI bool StateDispatch(::std::unique_lock<::std::mutex>&& lock) const;
26 // NOLINTEND
27};
28
29} // namespace NetherNet::RunLoop
MCAPI bool KeepGoing() const
MCAPI bool StateDispatch(::std::unique_lock<::std::mutex > &&lock) const
Definition Alias.h:14