Synchronization

Stackable::unlock

(PECL pthreads >= 0.40)

Stackable::unlockSynchronization

Description

final public boolean Stackable::unlock ( void )

Unlock the referenced objects storage for the calling context

Parameters

This function has no parameters.

Return Values

A boolean indication of success

Examples

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)


Customers Area | Contact us | Affiliates