array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'ev.run.php', 1 => 'Ev::run', 2 => 'Begin checking for events and calling callbacks for the default loop', ), 'up' => array ( 0 => 'class.ev.php', 1 => 'Ev', ), 'prev' => array ( 0 => 'ev.resume.php', 1 => 'Ev::resume', ), 'next' => array ( 0 => 'ev.sleep.php', 1 => 'Ev::sleep', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ev/ev/run.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ev::run

(PECL ev >= 0.2.0)

Ev::runBegin checking for events and calling callbacks for the default loop

Beschreibung

final public static Ev::run( int $flags = ?): void

Begin checking for events and calling callbacks for the default 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.

Parameter-Liste

flags

Optional parameter flags can be one of the following:
List for possible values of flags
flags Description
0 The default behavior described above
Ev::RUN_ONCE Block at most one(wait, but don't loop)
Ev::RUN_NOWAIT Don't block at all(fetch/handle events, but don't wait)

See the run flag constants.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Siehe auch