Extension [ extension #121 ev version 1.1.2 ] { - Dependencies { Dependency [ sockets (Optional) ] } - Classes [14] { Class [ final class Ev ] { - Constants [34] { Constant [ public int FLAG_AUTO ] { 0 } Constant [ public int FLAG_NOENV ] { 16777216 } Constant [ public int FLAG_FORKCHECK ] { 33554432 } Constant [ public int FLAG_NOINOTIFY ] { 1048576 } Constant [ public int FLAG_SIGNALFD ] { 2097152 } Constant [ public int FLAG_NOSIGMASK ] { 4194304 } Constant [ public int RUN_NOWAIT ] { 1 } Constant [ public int RUN_ONCE ] { 2 } Constant [ public int BREAK_CANCEL ] { 0 } Constant [ public int BREAK_ONE ] { 1 } Constant [ public int BREAK_ALL ] { 2 } Constant [ public int MINPRI ] { -2 } Constant [ public int MAXPRI ] { 2 } Constant [ public int READ ] { 1 } Constant [ public int WRITE ] { 2 } Constant [ public int TIMER ] { 256 } Constant [ public int PERIODIC ] { 512 } Constant [ public int SIGNAL ] { 1024 } Constant [ public int CHILD ] { 2048 } Constant [ public int STAT ] { 4096 } Constant [ public int IDLE ] { 8192 } Constant [ public int PREPARE ] { 16384 } Constant [ public int CHECK ] { 32768 } Constant [ public int EMBED ] { 65536 } Constant [ public int CUSTOM ] { 16777216 } Constant [ public int ERROR ] { -2147483648 } Constant [ public int BACKEND_SELECT ] { 1 } Constant [ public int BACKEND_POLL ] { 2 } Constant [ public int BACKEND_EPOLL ] { 4 } Constant [ public int BACKEND_KQUEUE ] { 8 } Constant [ public int BACKEND_DEVPOLL ] { 16 } Constant [ public int BACKEND_PORT ] { 32 } Constant [ public int BACKEND_ALL ] { 255 } Constant [ public int BACKEND_MASK ] { 65535 } } - Static properties [0] { } - Static methods [17] { Method [ final static public method supportedBackends ] { - Parameters [0] { } } Method [ final static public method recommendedBackends ] { - Parameters [0] { } } Method [ final static public method embeddableBackends ] { - Parameters [0] { } } Method [ final static public method sleep ] { - Parameters [1] { Parameter #0 [ $seconds ] } } Method [ final static public method time ] { - Parameters [0] { } } Method [ final static public method feedSignal ] { - Parameters [1] { Parameter #0 [ $signum ] } } Method [ final static public method feedSignalEvent ] { - Parameters [1] { Parameter #0 [ $signum ] } } Method [ final static public method run ] { - Parameters [1] { Parameter #0 [ $flags ] } } Method [ final static public method now ] { - Parameters [0] { } } Method [ final static public method stop ] { - Parameters [1] { Parameter #0 [ $how ] } } Method [ final static public method iteration ] { - Parameters [0] { } } Method [ final static public method depth ] { - Parameters [0] { } } Method [ final static public method verify ] { - Parameters [0] { } } Method [ final static public method backend ] { - Parameters [0] { } } Method [ final static public method nowUpdate ] { - Parameters [0] { } } Method [ final static public method suspend ] { - Parameters [0] { } } Method [ final static public method resume ] { - Parameters [0] { } } } - Properties [0] { } - Methods [0] { } } Class [ final class EvLoop ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ static public method defaultLoop ] { - Parameters [4] { Parameter #0 [ $flags ] Parameter #1 [ $data ] Parameter #2 [ $io_interval ] Parameter #3 [ $timeout_interval ] } } } - Properties [8] { Property [ public $data ] Property [ public $backend ] Property [ public $is_default_loop ] Property [ public $iteration ] Property [ public $pending ] Property [ public $io_interval ] Property [ public $timeout_interval ] Property [ public $depth ] } - Methods [22] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ $flags ] Parameter #1 [ $data ] Parameter #2 [ $io_interval ] Parameter #3 [ $timeout_interval ] } } Method [ public method loopFork ] { - Parameters [0] { } } Method [ public method verify ] { - Parameters [0] { } } Method [ public method invokePending ] { - Parameters [0] { } } Method [ public method nowUpdate ] { - Parameters [0] { } } Method [ public method suspend ] { - Parameters [0] { } } Method [ public method resume ] { - Parameters [0] { } } Method [ public method backend ] { - Parameters [0] { } } Method [ public method now ] { - Parameters [0] { } } Method [ public method run ] { - Parameters [1] { Parameter #0 [ $flags ] } } Method [ public method stop ] { - Parameters [1] { Parameter #0 [ $how ] } } Method [ final public method io ] { - Parameters [5] { Parameter #0 [ $fd ] Parameter #1 [ $events ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ final public method timer ] { - Parameters [5] { Parameter #0 [ $after ] Parameter #1 [ $repeat ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ final public method periodic ] { - Parameters [5] { Parameter #0 [ $offset ] Parameter #1 [ $interval ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ final public method signal ] { - Parameters [4] { Parameter #0 [ $signum ] Parameter #1 [ $callback ] Parameter #2 [ $data ] Parameter #3 [ $priority ] } } Method [ final public method child ] { - Parameters [5] { Parameter #0 [ $pid ] Parameter #1 [ $trace ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ final public method stat ] { - Parameters [5] { Parameter #0 [ $path ] Parameter #1 [ $interval ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ final public method idle ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ final public method check ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ final public method prepare ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ final public method embed ] { - Parameters [4] { Parameter #0 [ $other ] Parameter #1 [ $callback ] Parameter #2 [ $data ] Parameter #3 [ $priority ] } } Method [ final public method fork ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } } } Class [ abstract class EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [4] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] } - Methods [9] { Method [ abstract public method __construct ] { } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvIo extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ $fd ] Parameter #1 [ $events ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } } - Properties [6] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $fd ] Property [ public $events ] } - Methods [10] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ $fd ] Parameter #1 [ $events ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ $fd ] Parameter #1 [ $events ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvTimer extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ $after ] Parameter #1 [ $repeat ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } } - Properties [6] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $repeat ] Property [ public $remaining ] } - Methods [11] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ $after ] Parameter #1 [ $repeat ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ $after ] Parameter #1 [ $repeat ] } } Method [ public method again ] { - Parameters [0] { } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvPeriodic extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [6] { Parameter #0 [ $offset ] Parameter #1 [ $interval ] Parameter #2 [ $reschedule_cb ] Parameter #3 [ $callback ] Parameter #4 [ $data ] Parameter #5 [ $priority ] } } } - Properties [6] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $offset ] Property [ public $interval ] } - Methods [12] { Method [ public method __construct ] { - Parameters [6] { Parameter #0 [ $offset ] Parameter #1 [ $interval ] Parameter #2 [ $reschedule_cb ] Parameter #3 [ $callback ] Parameter #4 [ $data ] Parameter #5 [ $priority ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ $offset ] Parameter #1 [ $interval ] } } Method [ public method again ] { - Parameters [0] { } } Method [ public method at ] { - Parameters [0] { } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvSignal extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [4] { Parameter #0 [ $signum ] Parameter #1 [ $callback ] Parameter #2 [ $data ] Parameter #3 [ $priority ] } } } - Properties [5] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $signum ] } - Methods [10] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ $signum ] Parameter #1 [ $callback ] Parameter #2 [ $data ] Parameter #3 [ $priority ] } } Method [ public method set ] { - Parameters [1] { Parameter #0 [ $signum ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvChild extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ $pid ] Parameter #1 [ $trace ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } } - Properties [7] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $pid ] Property [ public $rpid ] Property [ public $rstatus ] } - Methods [10] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ $pid ] Parameter #1 [ $trace ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ $pid ] Parameter #1 [ $trace ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvStat extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ $path ] Parameter #1 [ $interval ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } } - Properties [6] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $path ] Property [ public $interval ] } - Methods [13] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ $path ] Parameter #1 [ $interval ] Parameter #2 [ $callback ] Parameter #3 [ $data ] Parameter #4 [ $priority ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ $path ] Parameter #1 [ $interval ] } } Method [ public method attr ] { - Parameters [0] { } } Method [ public method prev ] { - Parameters [0] { } } Method [ public method stat ] { - Parameters [0] { } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvIdle extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } } - Properties [4] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvCheck extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } } - Properties [4] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvPrepare extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } } - Properties [4] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvEmbed extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [4] { Parameter #0 [ $other ] Parameter #1 [ $callback ] Parameter #2 [ $data ] Parameter #3 [ $priority ] } } } - Properties [5] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] Property [ public $embed ] } - Methods [11] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ $other ] Parameter #1 [ $callback ] Parameter #2 [ $data ] Parameter #3 [ $priority ] } } Method [ public method set ] { - Parameters [1] { Parameter #0 [ $other ] } } Method [ public method sweep ] { - Parameters [0] { } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } Class [ class EvFork extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } } - Properties [4] { Property [ public $is_active ] Property [ public $data ] Property [ public $is_pending ] Property [ public $priority ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ $callback ] Parameter #1 [ $data ] Parameter #2 [ $priority ] } } Method [ public method start ] { - Parameters [0] { } } Method [ public method stop ] { - Parameters [0] { } } Method [ public method clear ] { - Parameters [0] { } } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ $revents ] } } Method [ public method getLoop ] { - Parameters [0] { } } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ $value ] } } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ $callback ] } } } } } }