diff options
-rw-r--r-- | REFLECTION | 1051 |
1 files changed, 1051 insertions, 0 deletions
diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..828def5 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,1051 @@ +Extension [ <persistent> extension #73 amqp version 1.4.0 ] { + + - INI { + Entry [ amqp.host <ALL> ] + Current = 'localhost' + } + Entry [ amqp.vhost <ALL> ] + Current = '/' + } + Entry [ amqp.port <ALL> ] + Current = '5672' + } + Entry [ amqp.timeout <ALL> ] + Current = '' + } + Entry [ amqp.read_timeout <ALL> ] + Current = '0' + } + Entry [ amqp.write_timeout <ALL> ] + Current = '0' + } + Entry [ amqp.connect_timeout <ALL> ] + Current = '0' + } + Entry [ amqp.login <ALL> ] + Current = 'guest' + } + Entry [ amqp.password <ALL> ] + Current = 'guest' + } + Entry [ amqp.auto_ack <ALL> ] + Current = '0' + } + Entry [ amqp.prefetch_count <ALL> ] + Current = '3' + } + } + + - Constants [20] { + Constant [ integer AMQP_NOPARAM ] { 0 } + Constant [ integer AMQP_DURABLE ] { 2 } + Constant [ integer AMQP_PASSIVE ] { 4 } + Constant [ integer AMQP_EXCLUSIVE ] { 8 } + Constant [ integer AMQP_AUTODELETE ] { 16 } + Constant [ integer AMQP_INTERNAL ] { 32 } + Constant [ integer AMQP_NOLOCAL ] { 64 } + Constant [ integer AMQP_AUTOACK ] { 128 } + Constant [ integer AMQP_IFEMPTY ] { 256 } + Constant [ integer AMQP_IFUNUSED ] { 512 } + Constant [ integer AMQP_MANDATORY ] { 1024 } + Constant [ integer AMQP_IMMEDIATE ] { 2048 } + Constant [ integer AMQP_MULTIPLE ] { 4096 } + Constant [ integer AMQP_NOWAIT ] { 8192 } + Constant [ integer AMQP_REQUEUE ] { 16384 } + Constant [ string AMQP_EX_TYPE_DIRECT ] { direct } + Constant [ string AMQP_EX_TYPE_FANOUT ] { fanout } + Constant [ string AMQP_EX_TYPE_TOPIC ] { topic } + Constant [ string AMQP_EX_TYPE_HEADERS ] { headers } + Constant [ integer AMQP_OS_SOCKET_TIMEOUT_ERRNO ] { 536870923 } + } + + - Classes [10] { + Class [ <internal:amqp> class AMQPConnection ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [23] { + Method [ <internal:amqp, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> array $credentials ] + } + } + + Method [ <internal:amqp> public method isConnected ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method connect ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method pconnect ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method pdisconnect ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method disconnect ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method reconnect ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getLogin ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setLogin ] { + + - Parameters [1] { + Parameter #0 [ <required> $login ] + } + } + + Method [ <internal:amqp> public method getPassword ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setPassword ] { + + - Parameters [1] { + Parameter #0 [ <required> $password ] + } + } + + Method [ <internal:amqp> public method getHost ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setHost ] { + + - Parameters [1] { + Parameter #0 [ <required> $host ] + } + } + + Method [ <internal:amqp> public method getPort ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setPort ] { + + - Parameters [1] { + Parameter #0 [ <required> $port ] + } + } + + Method [ <internal:amqp> public method getVhost ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setVhost ] { + + - Parameters [1] { + Parameter #0 [ <required> $vhost ] + } + } + + Method [ <internal:amqp> public method getTimeout ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setTimeout ] { + + - Parameters [1] { + Parameter #0 [ <required> $timeout ] + } + } + + Method [ <internal:amqp> public method getReadTimeout ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setReadTimeout ] { + + - Parameters [1] { + Parameter #0 [ <required> $timeout ] + } + } + + Method [ <internal:amqp> public method getWriteTimeout ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setWriteTimeout ] { + + - Parameters [1] { + Parameter #0 [ <required> $timeout ] + } + } + } + } + + Class [ <internal:amqp> class AMQPChannel ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [12] { + Method [ <internal:amqp, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $amqp_connection ] + } + } + + Method [ <internal:amqp> public method isConnected ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getChannelId ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setPrefetchSize ] { + + - Parameters [1] { + Parameter #0 [ <required> $size ] + } + } + + Method [ <internal:amqp> public method getPrefetchSize ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setPrefetchCount ] { + + - Parameters [1] { + Parameter #0 [ <required> $count ] + } + } + + Method [ <internal:amqp> public method getPrefetchCount ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method qos ] { + + - Parameters [2] { + Parameter #0 [ <required> $size ] + Parameter #1 [ <required> $count ] + } + } + + Method [ <internal:amqp> public method startTransaction ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method commitTransaction ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method rollbackTransaction ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getConnection ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:amqp> class AMQPQueue ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [23] { + Method [ <internal:amqp, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $amqp_channel ] + } + } + + Method [ <internal:amqp> public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $queue_name ] + } + } + + Method [ <internal:amqp> public method getFlags ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setFlags ] { + + - Parameters [1] { + Parameter #0 [ <required> $flags ] + } + } + + Method [ <internal:amqp> public method getArgument ] { + + - Parameters [1] { + Parameter #0 [ <required> $argument ] + } + } + + Method [ <internal:amqp> public method getArguments ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setArgument ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:amqp> public method setArguments ] { + + - Parameters [1] { + Parameter #0 [ <required> array $arguments ] + } + } + + Method [ <internal:amqp> public method declareQueue ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method bind ] { + + - Parameters [3] { + Parameter #0 [ <required> $exchange_name ] + Parameter #1 [ <optional> $routing_key ] + Parameter #2 [ <optional> $arguments ] + } + } + + Method [ <internal:amqp> public method get ] { + + - Parameters [1] { + Parameter #0 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method consume ] { + + - Parameters [3] { + Parameter #0 [ <required> $callback ] + Parameter #1 [ <optional> $flags ] + Parameter #2 [ <optional> $consumer_tag ] + } + } + + Method [ <internal:amqp> public method ack ] { + + - Parameters [2] { + Parameter #0 [ <required> $delivery_tag ] + Parameter #1 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method nack ] { + + - Parameters [2] { + Parameter #0 [ <required> $delivery_tag ] + Parameter #1 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method reject ] { + + - Parameters [2] { + Parameter #0 [ <required> $delivery_tag ] + Parameter #1 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method purge ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method cancel ] { + + - Parameters [1] { + Parameter #0 [ <optional> $consumer_tag ] + } + } + + Method [ <internal:amqp> public method delete ] { + + - Parameters [1] { + Parameter #0 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method unbind ] { + + - Parameters [3] { + Parameter #0 [ <required> $exchange_name ] + Parameter #1 [ <optional> $routing_key ] + Parameter #2 [ <optional> $arguments ] + } + } + + Method [ <internal:amqp> public method getChannel ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getConnection ] { + + - Parameters [0] { + } + } + + Method [ <internal, deprecated:amqp> public method declare ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:amqp> class AMQPExchange ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [18] { + Method [ <internal:amqp, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <required> $amqp_channel ] + } + } + + Method [ <internal:amqp> public method getName ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setName ] { + + - Parameters [1] { + Parameter #0 [ <required> $exchange_name ] + } + } + + Method [ <internal:amqp> public method getFlags ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setFlags ] { + + - Parameters [1] { + Parameter #0 [ <required> $flags ] + } + } + + Method [ <internal:amqp> public method getType ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setType ] { + + - Parameters [1] { + Parameter #0 [ <required> $exchange_type ] + } + } + + Method [ <internal:amqp> public method getArgument ] { + + - Parameters [1] { + Parameter #0 [ <required> $argument ] + } + } + + Method [ <internal:amqp> public method getArguments ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method setArgument ] { + + - Parameters [2] { + Parameter #0 [ <required> $key ] + Parameter #1 [ <required> $value ] + } + } + + Method [ <internal:amqp> public method setArguments ] { + + - Parameters [1] { + Parameter #0 [ <required> array $arguments ] + } + } + + Method [ <internal:amqp> public method declareExchange ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method bind ] { + + - Parameters [3] { + Parameter #0 [ <required> $exchange_name ] + Parameter #1 [ <required> $routing_key ] + Parameter #2 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method delete ] { + + - Parameters [2] { + Parameter #0 [ <optional> $exchange_name ] + Parameter #1 [ <optional> $flags ] + } + } + + Method [ <internal:amqp> public method publish ] { + + - Parameters [4] { + Parameter #0 [ <required> $message ] + Parameter #1 [ <optional> $routing_key ] + Parameter #2 [ <optional> $flags ] + Parameter #3 [ <optional> array $headers ] + } + } + + Method [ <internal:amqp> public method getChannel ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getConnection ] { + + - Parameters [0] { + } + } + + Method [ <internal, deprecated:amqp> public method declare ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:amqp> class AMQPEnvelope ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [20] { + Method [ <internal:amqp, ctor> public method __construct ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getBody ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getRoutingKey ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getDeliveryTag ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getDeliveryMode ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getExchangeName ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method isRedelivery ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getContentType ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getContentEncoding ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getType ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getTimestamp ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getPriority ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getExpiration ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getUserId ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getAppId ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getMessageId ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getReplyTo ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getCorrelationId ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getHeaders ] { + + - Parameters [0] { + } + } + + Method [ <internal:amqp> public method getHeader ] { + + - Parameters [0] { + } + } + } + } + + Class [ <internal:amqp> class AMQPException extends Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:amqp> class AMQPConnectionException extends AMQPException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:amqp> class AMQPChannelException extends AMQPException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:amqp> class AMQPQueueException extends AMQPException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + + Class [ <internal:amqp> class AMQPExchangeException extends AMQPException ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ <default> protected $message ] + Property [ <default> protected $code ] + Property [ <default> protected $file ] + Property [ <default> protected $line ] + } + + - Methods [9] { + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Exception> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Exception> final public method getCode ] { + } + + Method [ <internal:Core, inherits Exception> final public method getFile ] { + } + + Method [ <internal:Core, inherits Exception> final public method getLine ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Exception> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Exception> public method __toString ] { + } + } + } + } +} + |