diff options
-rw-r--r-- | PHPINFO | 2 | ||||
-rw-r--r-- | REFLECTION | 180 | ||||
-rw-r--r-- | php-pecl-parallel.spec | 5 |
3 files changed, 182 insertions, 5 deletions
@@ -2,4 +2,4 @@ parallel parallel support => enabled -parallel version => 1.0.3 +parallel version => 1.1.0 @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #127 parallel version 1.0.3 ] { +Extension [ <persistent> extension #127 parallel version 1.1.0 ] { - Functions { Function [ <internal:parallel> function parallel\bootstrap ] { @@ -23,7 +23,7 @@ Extension [ <persistent> extension #127 parallel version 1.0.3 ] { } } - - Classes [33] { + - Classes [36] { Class [ <internal:parallel> class parallel\Error extends Error implements Throwable ] { - Constants [0] { @@ -993,6 +993,120 @@ Extension [ <persistent> extension #127 parallel version 1.0.3 ] { } } + Class [ <internal:parallel> class parallel\Sync\Error extends parallel\Error implements Throwable ] { + + - 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 [10] { + Method [ <internal:Core, inherits Error, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Error> public method __wakeup ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getCode ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getFile ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getLine ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> public method __toString ] { + } + } + } + + Class [ <internal:parallel> class parallel\Sync\Error\IllegalValue extends parallel\Sync\Error implements Throwable ] { + + - 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 [10] { + Method [ <internal:Core, inherits Error, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> $message ] + Parameter #1 [ <optional> $code ] + Parameter #2 [ <optional> $previous ] + } + } + + Method [ <internal:Core, inherits Error> public method __wakeup ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getMessage ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getCode ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getFile ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getLine ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getTrace ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getPrevious ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> final public method getTraceAsString ] { + } + + Method [ <internal:Core, inherits Error, prototype Throwable> public method __toString ] { + } + } + } + Class [ <internal:parallel> class parallel\Events\Error extends parallel\Error implements Throwable ] { - Constants [0] { @@ -1559,7 +1673,8 @@ Extension [ <persistent> extension #127 parallel version 1.0.3 ] { - Methods [5] { Method [ <internal:parallel, ctor> public method __construct ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ <optional> integer $capacity ] } } @@ -1753,6 +1868,65 @@ Extension [ <persistent> extension #127 parallel version 1.0.3 ] { } } } + + Class [ <internal:parallel> final class parallel\Sync ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ <internal:parallel, ctor> public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> $value ] + } + } + + Method [ <internal:parallel> public method set ] { + + - Parameters [1] { + Parameter #0 [ <required> $value ] + } + } + + Method [ <internal:parallel> public method get ] { + + - Parameters [0] { + } + } + + Method [ <internal:parallel> public method wait ] { + + - Parameters [0] { + } + - Return [ boolean ] + } + + Method [ <internal:parallel> public method notify ] { + + - Parameters [1] { + Parameter #0 [ <optional> boolean $all ] + } + - Return [ boolean ] + } + + Method [ <internal:parallel> public method __invoke ] { + + - Parameters [1] { + Parameter #0 [ <required> callable $block ] + } + } + } + } } } diff --git a/php-pecl-parallel.spec b/php-pecl-parallel.spec index ddd0197..f5dc3a1 100644 --- a/php-pecl-parallel.spec +++ b/php-pecl-parallel.spec @@ -13,7 +13,7 @@ Summary: Parallel concurrency API Name: %{?scl_prefix}php-pecl-%{pecl_name} -Version: 1.0.3 +Version: 1.1.0 Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: PHP URL: http://pecl.php.net/package/%{pecl_name} @@ -167,6 +167,9 @@ REPORT_EXIT_STATUS=1 \ %changelog +* Mon Jun 3 2019 Remi Collet <remi@remirepo.net> - 1.1.0-1 +- update to 1.1.0 + * Mon May 27 2019 Remi Collet <remi@remirepo.net> - 1.0.3-1 - update to 1.0.3 |