Threaded::unlock

(PECL pthreads < 3.0.0)

Threaded::unlockSynchronization

Внимание

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

Описание

public Threaded::unlock ( void ) : bool

Unlock the referenced objects storage for the calling context

Список параметров

У этой функции нет параметров.

Возвращаемые значения

A boolean indication of success

Примеры

Пример #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();
?>

Результат выполнения данного примера:

bool(true)
bool(true)