EvLoop::run
(PECL ev >= 0.2.0)
EvLoop::run — Begin checking for events and calling callbacks for the loop
Description
   public
   void
    EvLoop::run
    ([ 
    int
     
  $flags
     = 0
   
  ] )
   Begin checking for events and calling callbacks for the current event loop.
   Returns when a callback calls
    Ev::stop()
   method, or the flags are nonzero(in which case the return value is true) or
   when there are no active watchers which reference the loop(
    EvWatcher::keepalive()
   is TRUE), in which case the return value will be FALSE. The return
   value can generally be interpreted as
   if TRUE, there is more work left
  to do
   .
  
Liste de paramètres
- 
    
     
flags - 
     
Optional parameter
flagscan be one of the following:List for possible values of flagsflagsDescription 0The default behavior described above Ev::RUN_ONCEBlock at most one(wait, but don't loop) Ev::RUN_NOWAITDon't block at all(fetch/handle events, but don't wait) See the run flag constants .
 
Valeurs de retour
Aucune valeur n'est retournée.
Voir aussi
- EvLoop::stop() - Stops the event loop
 - Ev::run() - Commence la vérification des événements et appelle les fonctions de rappels pour la boucle par défaut
 
