Stackable::unlock
(PECL pthreads >= 0.40)
Stackable::unlock — Synchronization
Descripción
final public boolean Stackable::unlock
( void
)
Unlock the referenced objects storage for the calling context
Parámetros
Esta función no tiene parámetros.
Valores devueltos
A boolean indication of success
Ejemplos
Ejemplo #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();
?>
El resultado del ejemplo sería:
bool(true) bool(true)
There are no user contributed notes for this page.
