From 37ab090b9aa4d510c7bf9048d304874b144f6f05 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 8 Jul 2014 18:55:49 +0200 Subject: php-pecl-sync: new package (WIP) --- REFLECTION | 178 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..eb24804 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,178 @@ +Extension [ extension #143 sync version 1.0.0 ] { + + - Classes [4] { + Class [ class SyncMutex ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $name ] + } + } + + Method [ public method lock ] { + + - Parameters [1] { + Parameter #0 [ $wait ] + } + } + + Method [ public method unlock ] { + + - Parameters [1] { + Parameter #0 [ $all ] + } + } + } + } + + Class [ class SyncSemaphore ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $name ] + Parameter #1 [ $initialval ] + Parameter #2 [ $autounlock ] + } + } + + Method [ public method lock ] { + + - Parameters [1] { + Parameter #0 [ $wait ] + } + } + + Method [ public method unlock ] { + + - Parameters [1] { + Parameter #0 [ &$prevcount ] + } + } + } + } + + Class [ class SyncEvent ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $manual ] + } + } + + Method [ public method wait ] { + + - Parameters [1] { + Parameter #0 [ $wait ] + } + } + + Method [ public method fire ] { + + - Parameters [0] { + } + } + + Method [ public method reset ] { + + - Parameters [0] { + } + } + } + } + + Class [ class SyncReaderWriter ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $autounlock ] + } + } + + Method [ public method readlock ] { + + - Parameters [1] { + Parameter #0 [ $wait ] + } + } + + Method [ public method writelock ] { + + - Parameters [1] { + Parameter #0 [ $wait ] + } + } + + Method [ public method readunlock ] { + + - Parameters [0] { + } + } + + Method [ public method writeunlock ] { + + - Parameters [0] { + } + } + } + } + } +} + -- cgit