1
0
mirror of https://github.com/wqking/eventpp.git synced 2024-12-27 16:41:11 +08:00
eventpp/doc/eventutil.md

1.1 KiB

Utilities reference

Header

eventpp/eventutil.h

template <typename DispatcherType>
bool removeListener(
	DispatcherType & dispatcher,
	const typename DispatcherType::Event & event,
	const typename DispatcherType::Callback & listener
);

The function finds listener of event in dispatcher, if it finds one, removes the listener and returns true, otherwise returns false.
Note: the function only removes the first found listener. To remove more than one listeners, repeat calling this function until it returns false.
This function requires the listener be able to be compared with equal operator (==).

template <typename CallbackListType>
bool removeListener(
	CallbackListType & callbackList,
	const typename CallbackListType::Callback & callback
);

The function finds callback in callbackList, if it finds one, removes the callback and returns true, otherwise returns false.
Note: the function only removes the first found callback. To remove more than one callbacks, repeat calling this function until it returns false.
This function requires the callback be able to be compared with equal operator (==).