![]() |
Bitcoin Core
25.99.0
P2P Digital Currency
|
MainSignalsImpl manages a list of shared_ptr<CValidationInterface> callbacks. More...
Classes | |
struct | ListEntry |
List entries consist of a callback pointer and reference count. More... | |
Public Member Functions | |
MainSignalsImpl (CScheduler &scheduler LIFETIMEBOUND) | |
void | Register (std::shared_ptr< CValidationInterface > callbacks) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex) |
void | Unregister (CValidationInterface *callbacks) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex) |
void | Clear () EXCLUSIVE_LOCKS_REQUIRED(!m_mutex) |
Clear unregisters every previously registered callback, erasing every map entry. More... | |
template<typename F > | |
void | Iterate (F &&f) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex) |
Public Attributes | |
SingleThreadedSchedulerClient | m_schedulerClient |
Private Member Functions | |
std::list< ListEntry > m_list | GUARDED_BY (m_mutex) |
std::unordered_map< CValidationInterface *, std::list< ListEntry >::iterator > m_map | GUARDED_BY (m_mutex) |
Private Attributes | |
Mutex | m_mutex |
MainSignalsImpl manages a list of shared_ptr<CValidationInterface> callbacks.
A std::unordered_map is used to track what callbacks are currently registered, and a std::list is used to store the callbacks that are currently registered as well as any callbacks that are just unregistered and about to be deleted when they are done executing.
Definition at line 30 of file validationinterface.cpp.
|
inlineexplicit |
Definition at line 48 of file validationinterface.cpp.
|
inline |
Clear unregisters every previously registered callback, erasing every map entry.
After this call, the list may still contain callbacks that are currently executing, but it will be cleared when they are done executing.
Definition at line 72 of file validationinterface.cpp.
|
private |
|
inline |
Definition at line 81 of file validationinterface.cpp.
|
inline |
Definition at line 50 of file validationinterface.cpp.
|
inline |
Definition at line 58 of file validationinterface.cpp.
|
private |
Definition at line 33 of file validationinterface.cpp.
SingleThreadedSchedulerClient MainSignalsImpl::m_schedulerClient |
Definition at line 46 of file validationinterface.cpp.