(PECL pthreads >= 0.40)
Stackable::unlock — Synchronization
Unlock the referenced objects storage for the calling context
This function has no parameters.
A boolean indication of success
Example #1 Locking Object Storage
<?php
class Work extends Stackable {
public function run() {
var_dump($this->lock());
/** nobody can read or write **/
var_dump($this->unlock());
/** reading / writing resumed for all contexts */
}
}
class My extends Worker {
public function run(){
/** ... **/
}
}
$my = new My();
$work = array(new Work());
$my->stack($work[0]);
$my->start();
?>
The above example will output:
bool(true) bool(true)