pht\Vector::unlock

Releases the vector's mutex lock

説明

public void pht\Vector::unlock ( void )

This method will release the mutex lock associated with the vector.

パラメータ

この関数にはパラメータはありません。

戻り値

No return value.

例1 Locking a vector's mutex lock

<?php

use pht\{ThreadVector};

$thread = new Thread();
$vector = new Vector();

$thread->addFunctionTask(function ($vector) {
    
$vector->lock();
    
$vector[] = 1;
    
$vector->unlock();
}, 
$vector);

$thread->start();

// $vector is currently being used by multiple threads
$vector->lock();
$vector[] = 2;
$vector->unlock();

$thread->join();