LeviLamina
Loading...
Searching...
No Matches
IContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/deps/nether_net/LogSeverity.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace NetherNet { class LanThreadManager; }
12namespace NetherNet { class RtcThreadManager; }
13namespace NetherNet { struct NetherNetTransportGlobalConfiguration; }
14// clang-format on
15
16namespace NetherNet {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~IContext() /*override*/ = default;
24
25 // vIndex: 1
26 virtual ::NetherNet::RtcThreadManager const& getSignalThread() const = 0;
27
28 // vIndex: 2
29 virtual ::NetherNet::RtcThreadManager const& getNetworkThread() const = 0;
30
31 // vIndex: 3
32 virtual ::NetherNet::RtcThreadManager const& getWorkerThread() const = 0;
33
34 // vIndex: 4
35 virtual ::NetherNet::LanThreadManager& getLanThread() = 0;
36
37 // vIndex: 5
38 virtual ::NetherNet::NetherNetTransportGlobalConfiguration const& getGlobalConfig() const = 0;
39
40 // vIndex: 6
41 virtual void _logMessage(::NetherNet::LogSeverity, char const*, char*) const = 0;
42
43 // vIndex: 7
44 virtual void setLoggingLevel(::NetherNet::LogSeverity) = 0;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI void logMessage(::NetherNet::LogSeverity, char const*, ...) const;
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62
63 // NOLINTEND
64};
65
66} // namespace NetherNet
Definition EnableNonOwnerReferences.h:7
Definition IContext.h:18