From 34e19f9722dd57064a77465f5e953c0da92ce2d7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 31 Mar 2017 08:47:31 +0200 Subject: switch the specs --- REFLECTION-DEV | 627 --------------------------------------------------------- 1 file changed, 627 deletions(-) delete mode 100644 REFLECTION-DEV (limited to 'REFLECTION-DEV') diff --git a/REFLECTION-DEV b/REFLECTION-DEV deleted file mode 100644 index 1bc0b30..0000000 --- a/REFLECTION-DEV +++ /dev/null @@ -1,627 +0,0 @@ -Extension [ extension #156 zookeeper version 0.3.1 ] { - - - INI { - Entry [ zookeeper.recv_timeout ] - Current = '10000' - } - Entry [ zookeeper.session_lock ] - Current = '1' - } - Entry [ zookeeper.sess_lock_wait ] - Current = '150000' - } - } - - - Classes [8] { - Class [ class Zookeeper ] { - - - Constants [48] { - Constant [ integer PERM_READ ] { 1 } - Constant [ integer PERM_WRITE ] { 2 } - Constant [ integer PERM_CREATE ] { 4 } - Constant [ integer PERM_DELETE ] { 8 } - Constant [ integer PERM_ALL ] { 31 } - Constant [ integer PERM_ADMIN ] { 16 } - Constant [ integer EPHEMERAL ] { 1 } - Constant [ integer SEQUENCE ] { 2 } - Constant [ integer EXPIRED_SESSION_STATE ] { -112 } - Constant [ integer AUTH_FAILED_STATE ] { -113 } - Constant [ integer CONNECTING_STATE ] { 1 } - Constant [ integer ASSOCIATING_STATE ] { 2 } - Constant [ integer CONNECTED_STATE ] { 3 } - Constant [ integer NOTCONNECTED_STATE ] { 999 } - Constant [ integer CREATED_EVENT ] { 1 } - Constant [ integer DELETED_EVENT ] { 2 } - Constant [ integer CHANGED_EVENT ] { 3 } - Constant [ integer CHILD_EVENT ] { 4 } - Constant [ integer SESSION_EVENT ] { -1 } - Constant [ integer NOTWATCHING_EVENT ] { -2 } - Constant [ integer LOG_LEVEL_ERROR ] { 1 } - Constant [ integer LOG_LEVEL_WARN ] { 2 } - Constant [ integer LOG_LEVEL_INFO ] { 3 } - Constant [ integer LOG_LEVEL_DEBUG ] { 4 } - Constant [ integer SYSTEMERROR ] { -1 } - Constant [ integer RUNTIMEINCONSISTENCY ] { -2 } - Constant [ integer DATAINCONSISTENCY ] { -3 } - Constant [ integer CONNECTIONLOSS ] { -4 } - Constant [ integer MARSHALLINGERROR ] { -5 } - Constant [ integer UNIMPLEMENTED ] { -6 } - Constant [ integer OPERATIONTIMEOUT ] { -7 } - Constant [ integer BADARGUMENTS ] { -8 } - Constant [ integer INVALIDSTATE ] { -9 } - Constant [ integer OK ] { 0 } - Constant [ integer APIERROR ] { -100 } - Constant [ integer NONODE ] { -101 } - Constant [ integer NOAUTH ] { -102 } - Constant [ integer BADVERSION ] { -103 } - Constant [ integer NOCHILDRENFOREPHEMERALS ] { -108 } - Constant [ integer NODEEXISTS ] { -110 } - Constant [ integer NOTEMPTY ] { -111 } - Constant [ integer SESSIONEXPIRED ] { -112 } - Constant [ integer INVALIDCALLBACK ] { -113 } - Constant [ integer INVALIDACL ] { -114 } - Constant [ integer AUTHFAILED ] { -115 } - Constant [ integer CLOSING ] { -116 } - Constant [ integer NOTHING ] { -117 } - Constant [ integer SESSIONMOVED ] { -118 } - } - - - Static properties [0] { - } - - - Static methods [2] { - Method [ static public method setDebugLevel ] { - - - Parameters [1] { - Parameter #0 [ $level ] - } - } - - Method [ static public method setDeterministicConnOrder ] { - - - Parameters [1] { - Parameter #0 [ $trueOrFalse ] - } - } - } - - - Properties [0] { - } - - - Methods [17] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $host ] - Parameter #1 [ $watcher_cb ] - Parameter #2 [ $recv_timeout ] - } - } - - Method [ public method connect ] { - - - Parameters [3] { - Parameter #0 [ $host ] - Parameter #1 [ $watcher_cb ] - Parameter #2 [ $recv_timeout ] - } - } - - Method [ public method create ] { - - - Parameters [4] { - Parameter #0 [ $path ] - Parameter #1 [ $value ] - Parameter #2 [ array $acl ] - Parameter #3 [ $flags ] - } - } - - Method [ public method delete ] { - - - Parameters [2] { - Parameter #0 [ $path ] - Parameter #1 [ $version ] - } - } - - Method [ public method get ] { - - - Parameters [3] { - Parameter #0 [ $path ] - Parameter #1 [ $watcher_cb ] - Parameter #2 [ &$stat_info ] - } - } - - Method [ public method getChildren ] { - - - Parameters [2] { - Parameter #0 [ $path ] - Parameter #1 [ $watcher_cb ] - } - } - - Method [ public method exists ] { - - - Parameters [2] { - Parameter #0 [ $path ] - Parameter #1 [ $watcher_cb ] - } - } - - Method [ public method set ] { - - - Parameters [4] { - Parameter #0 [ $path ] - Parameter #1 [ $value ] - Parameter #2 [ $version ] - Parameter #3 [ &$stat_info ] - } - } - - Method [ public method getAcl ] { - - - Parameters [0] { - } - } - - Method [ public method setAcl ] { - - - Parameters [3] { - Parameter #0 [ $path ] - Parameter #1 [ $version ] - Parameter #2 [ $acl ] - } - } - - Method [ public method getClientId ] { - - - Parameters [0] { - } - } - - Method [ public method getState ] { - - - Parameters [0] { - } - } - - Method [ public method getRecvTimeout ] { - - - Parameters [0] { - } - } - - Method [ public method isRecoverable ] { - - - Parameters [0] { - } - } - - Method [ public method addAuth ] { - - - Parameters [3] { - Parameter #0 [ $scheme ] - Parameter #1 [ $cert ] - Parameter #2 [ $completion_cb ] - } - } - - Method [ public method setWatcher ] { - - - Parameters [1] { - Parameter #0 [ $watcher_cb ] - } - } - - Method [ public method setLogStream ] { - - - Parameters [1] { - Parameter #0 [ $stream ] - } - } - } - } - - Class [ class ZookeeperException extends Exception implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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 [ class ZookeeperOperationTimeoutException extends ZookeeperException implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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 [ class ZookeeperConnectionException extends ZookeeperException implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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 [ class ZookeeperMarshallingException extends ZookeeperException implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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 [ class ZookeeperAuthenticationException extends ZookeeperException implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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 [ class ZookeeperSessionException extends ZookeeperException implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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 [ class ZookeeperNoNodeException extends ZookeeperException implements Throwable ] { - - - Constants [0] { - } - - - Static properties [0] { - } - - - Static methods [0] { - } - - - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] - } - - - Methods [10] { - Method [ public method __construct ] { - - - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] - } - } - - Method [ public method __wakeup ] { - } - - 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