Kea 2.7.5
|
Maintains list of unique CSCallbackSets. More...
#include <multi_threading_mgr.h>
Public Member Functions | |
CSCallbackSetList () | |
Constructor. | |
void | addCallbackSet (const std::string &name, const CSCallbackSet::Callback &check_cb, const CSCallbackSet::Callback &entry_cb, const CSCallbackSet::Callback &exit_cb) |
Adds a callback set to the list. | |
const std::list< CSCallbackSet > & | getCallbackSets () |
Fetches the list of callback sets. | |
void | removeAll () |
Removes all callbacks from the list. | |
void | removeCallbackSet (const std::string &name) |
Removes a callback set from the list. | |
Maintains list of unique CSCallbackSets.
The list emphasizes iteration order and speed over retrieval by name. When iterating over the list of callback sets, they are returned in the order they were added, not by name.
Definition at line 71 of file multi_threading_mgr.h.
|
inline |
Constructor.
Definition at line 74 of file multi_threading_mgr.h.
void isc::util::CSCallbackSetList::addCallbackSet | ( | const std::string & | name, |
const CSCallbackSet::Callback & | check_cb, | ||
const CSCallbackSet::Callback & | entry_cb, | ||
const CSCallbackSet::Callback & | exit_cb ) |
Adds a callback set to the list.
name | Name of the callback to add. |
check_cb | The check permissions callback to add. |
entry_cb | The CriticalSection entry callback to add. |
exit_cb | The CriticalSection exit callback to add. |
BadValue | if the name is already in the list, the name is blank, or either callback is empty. |
Definition at line 248 of file multi_threading_mgr.cc.
References isc_throw.
Referenced by isc::util::MultiThreadingMgr::addCriticalSectionCallbacks().
const std::list< CSCallbackSet > & isc::util::CSCallbackSetList::getCallbackSets | ( | ) |
Fetches the list of callback sets.
Definition at line 297 of file multi_threading_mgr.cc.
void isc::util::CSCallbackSetList::removeAll | ( | ) |
Removes all callbacks from the list.
Definition at line 292 of file multi_threading_mgr.cc.
Referenced by isc::util::MultiThreadingMgr::removeAllCriticalSectionCallbacks().
void isc::util::CSCallbackSetList::removeCallbackSet | ( | const std::string & | name | ) |
Removes a callback set from the list.
name | Name of the callback to remove. If no such callback exists, it simply returns. |
Definition at line 282 of file multi_threading_mgr.cc.
Referenced by isc::util::MultiThreadingMgr::removeCriticalSectionCallbacks().