The EvWatcher class
(PECL ev >= 0.2.0)
Introduction
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.
Synopsis de la classe
Propriétés
- is_active
-
Readonly .
TRUE
if the watcher is active.FALSE
otherwise. - data
-
User custom data associated with the watcher
- is_pending
-
Readonly .
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. - priority
-
Integer between
Ev::MINPRI
andEv::MAXPRI
. Pending watchers with higher priority will be invoked before watchers with lower priority, but priority will not keep watchers from being executed(except for EvIdle watchers). EvIdle watchers provide functionality to suppress invocation when higher priority events are pending.
Sommaire
- EvWatcher::clear — Efface le statut d'attente de l'observateur
- EvWatcher::__construct — Constructeur d'objet observateur
- EvWatcher::feed — Alimente les revents fournis dans la boucle d'événements
- EvWatcher::getLoop — Retourne la boucle responsable de l'observateur
- EvWatcher::invoke — Invoque la fonction de rappel de l'observateur avec le masque de bits des événements reçus fournis
- EvWatcher::keepalive — Garde la boucle active
- EvWatcher::setCallback — Définit une nouvelle fonction de rappel pour le watcher
- EvWatcher::start — Démarre le Watcher
- EvWatcher::stop — Arrête le Watcher