From 38a52192d45f34b68e29bb2457390e0b950a3bf1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 17 May 2014 17:19:42 +0200 Subject: php-pecl-*: add Reflection file --- REFLECTION | 719 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 719 insertions(+) create mode 100644 REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..9478141 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,719 @@ +Extension [ extension #152 zmq version 1.1.2 ] { + + - Classes [10] { + Class [ class ZMQ ] { + + - Constants [61] { + Constant [ integer SOCKET_PAIR ] { 0 } + Constant [ integer SOCKET_PUB ] { 1 } + Constant [ integer SOCKET_SUB ] { 2 } + Constant [ integer SOCKET_XSUB ] { 10 } + Constant [ integer SOCKET_XPUB ] { 9 } + Constant [ integer SOCKET_REQ ] { 3 } + Constant [ integer SOCKET_REP ] { 4 } + Constant [ integer SOCKET_XREQ ] { 5 } + Constant [ integer SOCKET_XREP ] { 6 } + Constant [ integer SOCKET_PUSH ] { 8 } + Constant [ integer SOCKET_PULL ] { 7 } + Constant [ integer SOCKET_DEALER ] { 5 } + Constant [ integer SOCKET_ROUTER ] { 6 } + Constant [ integer SOCKET_UPSTREAM ] { 7 } + Constant [ integer SOCKET_DOWNSTREAM ] { 8 } + Constant [ integer POLL_IN ] { 1 } + Constant [ integer POLL_OUT ] { 2 } + Constant [ integer MODE_SNDMORE ] { 2 } + Constant [ integer MODE_NOBLOCK ] { 1 } + Constant [ integer MODE_DONTWAIT ] { 1 } + Constant [ integer DEVICE_FORWARDER ] { 2 } + Constant [ integer DEVICE_QUEUE ] { 3 } + Constant [ integer DEVICE_STREAMER ] { 1 } + Constant [ integer ERR_INTERNAL ] { -99 } + Constant [ integer ERR_EAGAIN ] { 11 } + Constant [ integer ERR_ENOTSUP ] { 95 } + Constant [ integer ERR_EFSM ] { 156384763 } + Constant [ integer ERR_ETERM ] { 156384765 } + Constant [ string LIBZMQ_VER ] { 3.2.4 } + Constant [ integer SOCKOPT_HWM ] { 201 } + Constant [ integer SOCKOPT_SNDHWM ] { 23 } + Constant [ integer SOCKOPT_RCVHWM ] { 24 } + Constant [ integer SOCKOPT_AFFINITY ] { 4 } + Constant [ integer SOCKOPT_IDENTITY ] { 5 } + Constant [ integer SOCKOPT_RATE ] { 8 } + Constant [ integer SOCKOPT_RECOVERY_IVL ] { 9 } + Constant [ integer SOCKOPT_SNDBUF ] { 11 } + Constant [ integer SOCKOPT_RCVBUF ] { 12 } + Constant [ integer SOCKOPT_LINGER ] { 17 } + Constant [ integer SOCKOPT_RECONNECT_IVL ] { 18 } + Constant [ integer SOCKOPT_RECONNECT_IVL_MAX ] { 21 } + Constant [ integer SOCKOPT_BACKLOG ] { 19 } + Constant [ integer SOCKOPT_MAXMSGSIZE ] { 22 } + Constant [ integer SOCKOPT_SUBSCRIBE ] { 6 } + Constant [ integer SOCKOPT_UNSUBSCRIBE ] { 7 } + Constant [ integer SOCKOPT_TYPE ] { 16 } + Constant [ integer SOCKOPT_RCVMORE ] { 13 } + Constant [ integer SOCKOPT_FD ] { 14 } + Constant [ integer SOCKOPT_EVENTS ] { 15 } + Constant [ integer SOCKOPT_SNDTIMEO ] { 28 } + Constant [ integer SOCKOPT_RCVTIMEO ] { 27 } + Constant [ integer SOCKOPT_IPV4ONLY ] { 31 } + Constant [ integer SOCKOPT_LAST_ENDPOINT ] { 32 } + Constant [ integer SOCKOPT_TCP_KEEPALIVE ] { 34 } + Constant [ integer SOCKOPT_TCP_KEEPALIVE_IDLE ] { 36 } + Constant [ integer SOCKOPT_TCP_KEEPALIVE_CNT ] { 35 } + Constant [ integer SOCKOPT_TCP_KEEPALIVE_INTVL ] { 37 } + Constant [ integer SOCKOPT_TCP_ACCEPT_FILTER ] { 38 } + Constant [ integer SOCKOPT_DELAY_ATTACH_ON_CONNECT ] { 39 } + Constant [ integer SOCKOPT_XPUB_VERBOSE ] { 40 } + Constant [ integer CTXOPT_MAX_SOCKETS ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method clock ] { + + - Parameters [0] { + } + } + } + + - Properties [0] { + } + + - Methods [1] { + Method [ private method __construct ] { + + - Parameters [0] { + } + } + } + } + + Class [ class ZMQContext ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $io_threads ] + Parameter #1 [ $persistent ] + } + } + + Method [ public method getsocket ] { + + - Parameters [3] { + Parameter #0 [ $type ] + Parameter #1 [ $dsn ] + Parameter #2 [ $on_new_socket ] + } + } + + Method [ public method ispersistent ] { + + - Parameters [0] { + } + } + + Method [ final private method __clone ] { + + - Parameters [0] { + } + } + + Method [ public method setOpt ] { + + - Parameters [2] { + Parameter #0 [ $option ] + Parameter #1 [ $value ] + } + } + + Method [ public method getOpt ] { + + - Parameters [1] { + Parameter #0 [ $option ] + } + } + } + } + + Class [ class ZMQSocket ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [18] { + Method [ final public method __construct ] { + + - Parameters [4] { + Parameter #0 [ ZMQContext $ZMQContext ] + Parameter #1 [ $type ] + Parameter #2 [ $persistent_id ] + Parameter #3 [ $on_new_socket ] + } + } + + Method [ public method send ] { + + - Parameters [2] { + Parameter #0 [ $message ] + Parameter #1 [ $mode ] + } + } + + Method [ public method recv ] { + + - Parameters [1] { + Parameter #0 [ $mode ] + } + } + + Method [ public method sendmulti ] { + + - Parameters [2] { + Parameter #0 [ $message ] + Parameter #1 [ $mode ] + } + } + + Method [ public method recvmulti ] { + + - Parameters [1] { + Parameter #0 [ $mode ] + } + } + + Method [ public method bind ] { + + - Parameters [2] { + Parameter #0 [ $dsn ] + Parameter #1 [ $force ] + } + } + + Method [ public method connect ] { + + - Parameters [2] { + Parameter #0 [ $dsn ] + Parameter #1 [ $force ] + } + } + + Method [ public method unbind ] { + + - Parameters [1] { + Parameter #0 [ $dsn ] + } + } + + Method [ public method disconnect ] { + + - Parameters [1] { + Parameter #0 [ $dsn ] + } + } + + Method [ public method setsockopt ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method getendpoints ] { + + - Parameters [0] { + } + } + + Method [ public method getsockettype ] { + + - Parameters [0] { + } + } + + Method [ public method ispersistent ] { + + - Parameters [0] { + } + } + + Method [ public method getpersistentid ] { + + - Parameters [0] { + } + } + + Method [ public method getsockopt ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ final private method __clone ] { + + - Parameters [0] { + } + } + + Method [ public method sendmsg ] { + + - Parameters [2] { + Parameter #0 [ $message ] + Parameter #1 [ $mode ] + } + } + + Method [ public method recvmsg ] { + + - Parameters [1] { + Parameter #0 [ $mode ] + } + } + } + } + + Class [ class ZMQPoll ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ public method add ] { + + - Parameters [2] { + Parameter #0 [ $entry ] + Parameter #1 [ $type ] + } + } + + Method [ public method poll ] { + + - Parameters [3] { + Parameter #0 [ &$readable ] + Parameter #1 [ &$writable ] + Parameter #2 [ $timeout ] + } + } + + Method [ public method getlasterrors ] { + + - Parameters [0] { + } + } + + Method [ public method remove ] { + + - Parameters [1] { + Parameter #0 [ $remove ] + } + } + + Method [ public method count ] { + + - Parameters [0] { + } + } + + Method [ public method clear ] { + + - Parameters [0] { + } + } + + Method [ final private method __clone ] { + + - Parameters [0] { + } + } + } + } + + Class [ class ZMQDevice ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [9] { + Method [ final public method __construct ] { + + - Parameters [3] { + Parameter #0 [ ZMQSocket $frontend ] + Parameter #1 [ ZMQSocket $backend ] + Parameter #2 [ ZMQSocket $capture ] + } + } + + Method [ public method run ] { + + - Parameters [0] { + } + } + + Method [ public method setidlecallback ] { + + - Parameters [3] { + Parameter #0 [ $idle_callback ] + Parameter #1 [ $timeout ] + Parameter #2 [ $user_data ] + } + } + + Method [ public method setidletimeout ] { + + - Parameters [1] { + Parameter #0 [ $timeout ] + } + } + + Method [ public method getidletimeout ] { + + - Parameters [0] { + } + } + + Method [ public method settimercallback ] { + + - Parameters [3] { + Parameter #0 [ $idle_callback ] + Parameter #1 [ $timeout ] + Parameter #2 [ $user_data ] + } + } + + Method [ public method settimertimeout ] { + + - Parameters [1] { + Parameter #0 [ $timeout ] + } + } + + Method [ public method gettimertimeout ] { + + - Parameters [0] { + } + } + + Method [ final private method __clone ] { + + - Parameters [0] { + } + } + } + } + + Class [ class ZMQException extends Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class ZMQContextException extends ZMQException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class ZMQSocketException extends ZMQException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class ZMQPollException extends ZMQException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class ZMQDeviceException extends ZMQException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + } +} + -- cgit