From 1caee6dbedf7135091d8b676c0e27048d4da35d3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 25 Nov 2015 16:52:58 +0100 Subject: php-pecl-ev: 1.0.0RC2 --- REFLECTION-DEV | 1585 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1585 insertions(+) create mode 100644 REFLECTION-DEV (limited to 'REFLECTION-DEV') diff --git a/REFLECTION-DEV b/REFLECTION-DEV new file mode 100644 index 0000000..2caa267 --- /dev/null +++ b/REFLECTION-DEV @@ -0,0 +1,1585 @@ +Extension [ extension #90 ev version 1.0.0RC2 ] { + + - Dependencies { + Dependency [ sockets (Optional) ] + } + + - Classes [14] { + Class [ final class Ev ] { + + - Constants [34] { + Constant [ integer FLAG_AUTO ] { 0 } + Constant [ integer FLAG_NOENV ] { 16777216 } + Constant [ integer FLAG_FORKCHECK ] { 33554432 } + Constant [ integer FLAG_NOINOTIFY ] { 1048576 } + Constant [ integer FLAG_SIGNALFD ] { 2097152 } + Constant [ integer FLAG_NOSIGMASK ] { 4194304 } + Constant [ integer RUN_NOWAIT ] { 1 } + Constant [ integer RUN_ONCE ] { 2 } + Constant [ integer BREAK_CANCEL ] { 0 } + Constant [ integer BREAK_ONE ] { 1 } + Constant [ integer BREAK_ALL ] { 2 } + Constant [ integer MINPRI ] { -2 } + Constant [ integer MAXPRI ] { 2 } + Constant [ integer READ ] { 1 } + Constant [ integer WRITE ] { 2 } + Constant [ integer TIMER ] { 256 } + Constant [ integer PERIODIC ] { 512 } + Constant [ integer SIGNAL ] { 1024 } + Constant [ integer CHILD ] { 2048 } + Constant [ integer STAT ] { 4096 } + Constant [ integer IDLE ] { 8192 } + Constant [ integer PREPARE ] { 16384 } + Constant [ integer CHECK ] { 32768 } + Constant [ integer EMBED ] { 65536 } + Constant [ integer CUSTOM ] { 16777216 } + Constant [ integer ERROR ] { -2147483648 } + Constant [ integer BACKEND_SELECT ] { 1 } + Constant [ integer BACKEND_POLL ] { 2 } + Constant [ integer BACKEND_EPOLL ] { 4 } + Constant [ integer BACKEND_KQUEUE ] { 8 } + Constant [ integer BACKEND_DEVPOLL ] { 16 } + Constant [ integer BACKEND_PORT ] { 32 } + Constant [ integer BACKEND_ALL ] { 63 } + Constant [ integer 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 ] + } + } + } + } + } +} + -- cgit