Threaded::unlock

(PECL pthreads < 3.0.0)

Threaded::unlockSynchronization

Advertencia

This method has been removed in pthreads v3. The Threaded::synchronized() method should now be used.

Descripción

public Threaded::unlock ( void ) : bool

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 the property table of a threaded object

<?php
class My extends Thread {
    public function 
run() {
        
var_dump($this->lock());
        
/** nobody can read or write **/
        
var_dump($this->unlock());
        
/** reading / writing resumed for all other contexts */
    
}
}
$my = new My();
$my->start();
?>

El resultado del ejemplo sería:

bool(true)
bool(true)