The EvWatcher class
EvWatcher is a base class for all watchers( EvCheck, EvChild etc.). Since EvWatcher 's constructor is abstract, one can't(and don't need to) create EvWatcher objects directly.
Intro
EvWatcher is a base class for all watchers( EvCheck, EvChild etc.). Since EvWatcher 's constructor is abstract, one can't(and don't need to) create EvWatcher objects directly.
Class synopsis
Properties
is_activeReadonly. true if the watcher is active. false otherwise.
dataUser custom data associated with the watcher
is_pendingReadonly .true if the watcher is pending, i.e. it has outstanding events, but its callback has not yet been invoked. false otherwise. As long, as a watcher is pending(but not active), one must not change its priority.
priorityintbetweenEv::MINPRIandEv::MAXPRI. Pending watchers with higher priority will be invoked before watchers with lower priority, but priority will not keep watchers from being executed(except forEvIdlewatchers).EvIdlewatchers provide functionality to suppress invocation when higher priority events are pending.
Evwatcher