CL_TimerManager::unsubscribe
Syntax
static void unsubscribe(CL_TimerCallback *callback_class);
Parameters
callback_class | - | A pointer to the instanced callback class previously given as an argument to the subscribe function. This class may be deleted on unsubscription, depending on the delete_pointer value passed during subscribtion. |
Description
Unsubscribes the given callback_class, meaning no more calls will be made to it.
Back to index
|