LeviLamina
Loading...
Searching...
No Matches
SignalReceiver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/threading/LockGuard.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::Detail { class SignalPublisher; }
11namespace Bedrock::PubSub { class DeferredSubscriptionHub; }
12namespace Bedrock::PubSub { class RawSubscription; }
13namespace Bedrock::Threading { class Mutex; }
14// clang-format on
15
16namespace Bedrock {
17
18class SignalReceiver {
19public:
20 // SignalReceiver inner types declare
21 // clang-format off
22 struct ConnectionRecord;
23 // clang-format on
24
25 // SignalReceiver inner types define
26 struct ConnectionRecord {
27 public:
28 // member variables
29 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 ConnectionRecord& operator=(ConnectionRecord const&);
37 ConnectionRecord(ConnectionRecord const&);
38 ConnectionRecord();
39
40 public:
41 // member functions
42 // NOLINTBEGIN
43#ifdef LL_PLAT_C
44 MCNAPI ~ConnectionRecord();
45#endif
46 // NOLINTEND
47
48 public:
49 // destructor thunk
50 // NOLINTBEGIN
51#ifdef LL_PLAT_C
52 MCNAPI void $dtor();
53#endif
54 // NOLINTEND
55 };
56
57public:
58 // member variables
59 // NOLINTBEGIN
63 // NOLINTEND
64
65public:
66 // prevent constructor by default
67 SignalReceiver& operator=(SignalReceiver const&);
68 SignalReceiver(SignalReceiver const&);
69 SignalReceiver();
70
71public:
72 // member functions
73 // NOLINTBEGIN
74#ifdef LL_PLAT_C
75 MCNAPI bool _connectSignal(
77 connectOp,
79 int priority
80 );
81#endif
82 // NOLINTEND
83};
84
85} // namespace Bedrock
Definition SignalPublisher.h:13
Definition DeferredSubscriptionHub.h:16
Definition RawSubscription.h:10
Definition Mutex.h:10
Definition SignalReceiver.h:26
Definition Alias.h:14