Extension [ extension #72 ev version 1.2.0 ] { - 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] { } - Return [ int ] } Method [ final static public method recommendedBackends ] { - Parameters [0] { } - Return [ int ] } Method [ final static public method embeddableBackends ] { - Parameters [0] { } - Return [ int ] } Method [ final static public method sleep ] { - Parameters [1] { Parameter #0 [ float $seconds ] } - Return [ void ] } Method [ final static public method time ] { - Parameters [0] { } - Return [ float ] } Method [ final static public method feedSignal ] { - Parameters [1] { Parameter #0 [ int $signum ] } - Return [ void ] } Method [ final static public method feedSignalEvent ] { - Parameters [1] { Parameter #0 [ int $signum ] } - Return [ void ] } Method [ final static public method run ] { - Parameters [1] { Parameter #0 [ int $flags = 0 ] } - Return [ void ] } Method [ final static public method now ] { - Parameters [0] { } - Return [ float ] } Method [ final static public method stop ] { - Parameters [1] { Parameter #0 [ int $how = 0 ] } - Return [ void ] } Method [ final static public method iteration ] { - Parameters [0] { } - Return [ int ] } Method [ final static public method depth ] { - Parameters [0] { } - Return [ int ] } Method [ final static public method backend ] { - Parameters [0] { } - Return [ int ] } Method [ final static public method nowUpdate ] { - Parameters [0] { } - Return [ void ] } Method [ final static public method suspend ] { - Parameters [0] { } - Return [ void ] } Method [ final static public method resume ] { - Parameters [0] { } - Return [ void ] } Method [ final static public method verify ] { - Parameters [0] { } - Return [ void ] } } - 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 [ int $flags = Ev::FLAG_AUTO ] Parameter #1 [ mixed $data = null ] Parameter #2 [ float $io_interval = 0.0 ] Parameter #3 [ float $timeout_interval = 0.0 ] } - Return [ EvLoop ] } } - Properties [8] { Property [ public $data = NULL ] Property [ public $backend = NULL ] Property [ public $is_default_loop = NULL ] Property [ public $iteration = NULL ] Property [ public $pending = NULL ] Property [ public $io_interval = NULL ] Property [ public $timeout_interval = NULL ] Property [ public $depth = NULL ] } - Methods [22] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ int $flags = Ev::FLAG_AUTO ] Parameter #1 [ mixed $data = null ] Parameter #2 [ float $io_interval = 0.0 ] Parameter #3 [ float $timeout_interval = 0.0 ] } } Method [ public method loopFork ] { - Parameters [0] { } - Return [ void ] } Method [ public method verify ] { - Parameters [0] { } - Return [ void ] } Method [ public method invokePending ] { - Parameters [0] { } - Return [ void ] } Method [ public method nowUpdate ] { - Parameters [0] { } - Return [ void ] } Method [ public method suspend ] { - Parameters [0] { } - Return [ void ] } Method [ public method resume ] { - Parameters [0] { } - Return [ void ] } Method [ public method backend ] { - Parameters [0] { } - Return [ int ] } Method [ public method now ] { - Parameters [0] { } - Return [ float ] } Method [ public method run ] { - Parameters [1] { Parameter #0 [ int $flags = 0 ] } - Return [ void ] } Method [ public method stop ] { - Parameters [1] { Parameter #0 [ int $how = 0 ] } - Return [ void ] } Method [ final public method io ] { - Parameters [5] { Parameter #0 [ mixed $fd ] Parameter #1 [ int $events ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvIo ] } Method [ final public method timer ] { - Parameters [5] { Parameter #0 [ float $after ] Parameter #1 [ float $repeat ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvTimer ] } Method [ final public method periodic ] { - Parameters [6] { Parameter #0 [ float $offset ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $reschedule_cb ] Parameter #3 [ mixed $callback ] Parameter #4 [ mixed $data = null ] Parameter #5 [ int $priority = 0 ] } - Return [ EvPeriodic ] } Method [ final public method signal ] { - Parameters [4] { Parameter #0 [ int $signum ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } - Return [ EvSignal ] } Method [ final public method child ] { - Parameters [5] { Parameter #0 [ int $pid ] Parameter #1 [ bool $trace ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvChild ] } Method [ final public method stat ] { - Parameters [5] { Parameter #0 [ string $path ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvStat ] } Method [ final public method idle ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } - Return [ EvIdle ] } Method [ final public method check ] { - Parameters [0] { } - Return [ EvCheck ] } Method [ final public method prepare ] { - Parameters [0] { } - Return [ EvPrepare ] } Method [ final public method embed ] { - Parameters [0] { } - Return [ EvEmbed ] } Method [ final public method fork ] { - Parameters [0] { } - Return [ EvFork ] } } } Class [ abstract class EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [4] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] } - Methods [8] { Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvIo extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ mixed $fd ] Parameter #1 [ int $events ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvIo ] } } - Properties [6] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $fd = NULL ] Property [ public $events = NULL ] } - Methods [10] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ mixed $fd ] Parameter #1 [ int $events ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ mixed $fd ] Parameter #1 [ int $events ] } - Return [ void ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvTimer extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ float $after ] Parameter #1 [ float $repeat ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvTimer ] } } - Properties [6] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $repeat = NULL ] Property [ public $remaining = NULL ] } - Methods [11] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ float $after ] Parameter #1 [ float $repeat ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ float $after ] Parameter #1 [ float $repeat ] } - Return [ void ] } Method [ public method again ] { - Parameters [0] { } - Return [ void ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvPeriodic extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [6] { Parameter #0 [ float $offset ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $reschedule_cb ] Parameter #3 [ mixed $callback ] Parameter #4 [ mixed $data = null ] Parameter #5 [ int $priority = 0 ] } - Return [ EvPeriodic ] } } - Properties [6] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $offset = NULL ] Property [ public $interval = NULL ] } - Methods [12] { Method [ public method __construct ] { - Parameters [6] { Parameter #0 [ float $offset ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $reschedule_cb ] Parameter #3 [ mixed $callback ] Parameter #4 [ mixed $data = null ] Parameter #5 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [3] { Parameter #0 [ float $offset ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $reschedule_cb = null ] } - Return [ void ] } Method [ public method again ] { - Parameters [0] { } - Return [ void ] } Method [ public method at ] { - Parameters [0] { } - Return [ float ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvSignal extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [4] { Parameter #0 [ int $signum ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } - Return [ EvSignal ] } } - Properties [5] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $signum = NULL ] } - Methods [10] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ int $signum ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [1] { Parameter #0 [ int $signum ] } - Return [ void ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvChild extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ int $pid ] Parameter #1 [ bool $trace ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvChild ] } } - Properties [7] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $pid = NULL ] Property [ public $rpid = NULL ] Property [ public $rstatus = NULL ] } - Methods [10] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ int $pid ] Parameter #1 [ bool $trace ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ int $pid ] Parameter #1 [ bool $trace ] } - Return [ void ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvStat extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [5] { Parameter #0 [ string $path ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } - Return [ EvStat ] } } - Properties [6] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $path = NULL ] Property [ public $interval = NULL ] } - Methods [13] { Method [ public method __construct ] { - Parameters [5] { Parameter #0 [ string $path ] Parameter #1 [ float $interval ] Parameter #2 [ mixed $callback ] Parameter #3 [ mixed $data = null ] Parameter #4 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [2] { Parameter #0 [ string $path ] Parameter #1 [ float $interval ] } - Return [ void ] } Method [ public method attr ] { - Parameters [0] { } - Return [ mixed ] } Method [ public method prev ] { - Parameters [0] { } - Return [ mixed ] } Method [ public method stat ] { - Parameters [0] { } - Return [ bool ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvIdle extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } - Return [ EvIdle ] } } - Properties [4] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvCheck extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } - Return [ EvCheck ] } } - Properties [4] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvPrepare extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } - Return [ EvPrepare ] } } - Properties [4] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] } - Methods [9] { Method [ public method __construct ] { - Parameters [3] { Parameter #0 [ mixed $callback ] Parameter #1 [ mixed $data = null ] Parameter #2 [ int $priority = 0 ] } } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvEmbed extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [4] { Parameter #0 [ EvLoop $other ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } - Return [ EvEmbed ] } } - Properties [5] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] Property [ public $embed = NULL ] } - Methods [11] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ EvLoop $other ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } } Method [ public method set ] { - Parameters [1] { Parameter #0 [ EvLoop $other ] } - Return [ void ] } Method [ public method sweep ] { - Parameters [0] { } - Return [ void ] } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } Class [ class EvFork extends EvWatcher ] { - Constants [0] { } - Static properties [0] { } - Static methods [1] { Method [ final static public method createStopped ] { - Parameters [4] { Parameter #0 [ EvLoop $loop ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } - Return [ EvFork ] } } - Properties [4] { Property [ public $is_active = NULL ] Property [ public $data = NULL ] Property [ public $is_pending = NULL ] Property [ public $priority = NULL ] } - Methods [9] { Method [ public method __construct ] { - Parameters [4] { Parameter #0 [ EvLoop $loop ] Parameter #1 [ mixed $callback ] Parameter #2 [ mixed $data = null ] Parameter #3 [ int $priority = 0 ] } } Method [ public method start ] { - Parameters [0] { } - Return [ void ] } Method [ public method stop ] { - Parameters [0] { } - Return [ void ] } Method [ public method clear ] { - Parameters [0] { } - Return [ int ] } Method [ public method invoke ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method feed ] { - Parameters [1] { Parameter #0 [ int $revents ] } - Return [ void ] } Method [ public method getLoop ] { - Parameters [0] { } - Return [ ?EvLoop ] } Method [ public method keepalive ] { - Parameters [1] { Parameter #0 [ bool $value = true ] } - Return [ bool ] } Method [ public method setCallback ] { - Parameters [1] { Parameter #0 [ mixed $callback ] } - Return [ void ] } } } } }