25 auto HasPendingDisconnections()
const noexcept ->
bool
27 return !m_pending.empty();
30 auto GetPendingDisconnections() -> std::vector<int>
32 auto lock = std::lock_guard{m_mutex};
33 return std::exchange(m_pending, std::vector<int>{});
36 void StageDisconnect(
int id)
38 auto lock = std::lock_guard{m_mutex};
39 m_pending.push_back(
id);
43 std::vector<int> m_pending;
51 : m_link{link}, m_id{
id}, m_connected{
true}
55 auto Id()
const noexcept ->
int
60 auto IsConnected()
const noexcept ->
bool
65 auto Disconnect()
noexcept ->
bool
67 const auto connected = std::exchange(m_connected,
false);
70 m_link->StageDisconnect(m_id);
82template<
class... Args>
87 : m_func{std::move(func)},
88 m_state{std::make_shared<SharedConnectionState>(link,
id)},
94 auto Id()
const noexcept ->
int
99 auto Priority()
const noexcept ->
size_t
104 void operator()(Args... args)
109 auto GetState()
const -> std::weak_ptr<SharedConnectionState>
115 std::move_only_function<void(Args...)> m_func;
116 std::shared_ptr<SharedConnectionState> m_state;
Definition: SignalInternal.h:17
Definition: SignalInternal.h:48
Definition: SignalInternal.h:84