NcEngine
|
An RAII object managing a Signal connection. More...
#include <Signal.h>
Public Member Functions | |
Connection (std::weak_ptr< detail::SharedConnectionState > state) noexcept | |
Connection (Connection &&)=default | |
Connection & | operator= (Connection &&)=default |
Connection (const Connection &)=delete | |
Connection & | operator= (const Connection &)=delete |
bool | IsConnected () const noexcept |
bool | Disconnect () noexcept |
An RAII object managing a Signal connection.
When a Connection goes out of scope or Disconnect() is explicitly called, the associated function will be removed from the Signal, if the Signal still exists. Signals and Connections may be destroyed in any order.