From c846e5afc6421e6d6af9f7779134afd3dca9d6ca Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 3 Jun 2019 07:27:26 +0200 Subject: v1.1.0 --- PHPINFO | 2 +- REFLECTION | 180 ++++++++++++++++++++++++++++++++++++++++++++++++- php-pecl-parallel.spec | 5 +- 3 files changed, 182 insertions(+), 5 deletions(-) diff --git a/PHPINFO b/PHPINFO index efcc9bb..e977eac 100644 --- a/PHPINFO +++ b/PHPINFO @@ -2,4 +2,4 @@ parallel parallel support => enabled -parallel version => 1.0.3 +parallel version => 1.1.0 diff --git a/REFLECTION b/REFLECTION index 044ca9e..a803c77 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #127 parallel version 1.0.3 ] { +Extension [ extension #127 parallel version 1.1.0 ] { - Functions { Function [ function parallel\bootstrap ] { @@ -23,7 +23,7 @@ Extension [ extension #127 parallel version 1.0.3 ] { } } - - Classes [33] { + - Classes [36] { Class [ class parallel\Error extends Error implements Throwable ] { - Constants [0] { @@ -993,6 +993,120 @@ Extension [ extension #127 parallel version 1.0.3 ] { } } + Class [ class parallel\Sync\Error extends parallel\Error 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 parallel\Sync\Error\IllegalValue extends parallel\Sync\Error 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 parallel\Events\Error extends parallel\Error implements Throwable ] { - Constants [0] { @@ -1559,7 +1673,8 @@ Extension [ extension #127 parallel version 1.0.3 ] { - Methods [5] { Method [ public method __construct ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ integer $capacity ] } } @@ -1753,6 +1868,65 @@ Extension [ extension #127 parallel version 1.0.3 ] { } } } + + Class [ final class parallel\Sync ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method get ] { + + - Parameters [0] { + } + } + + Method [ public method wait ] { + + - Parameters [0] { + } + - Return [ boolean ] + } + + Method [ public method notify ] { + + - Parameters [1] { + Parameter #0 [ boolean $all ] + } + - Return [ boolean ] + } + + Method [ public method __invoke ] { + + - Parameters [1] { + Parameter #0 [ 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 - 1.1.0-1 +- update to 1.1.0 + * Mon May 27 2019 Remi Collet - 1.0.3-1 - update to 1.0.3 -- cgit