#include <IOKit/IONotifier.h>

IOKit/IONotifier.h Kernel.framework

@class IONotifier : public OSObject @abstract An abstract base class defining common methods for controlling a notification request. @discussion IOService notification requests are represented as implementations of the IONotifier object. It defines methods to enable, disable and remove notification requests. These actions are synchronized with invocations of the notification handler, so removing a notification request will guarantee the handler is not being executed.
1 class

classIONotifier

: public OSObject
virtual void remove() = 0pure virtual
virtual bool disable() = 0pure virtual
virtual void enable(bool was) = 0pure virtual