PHP Velho Oeste 2024

pht\Vector::unlock

(PECL pht >= 0.0.1)

pht\Vector::unlockReleases the vector's mutex lock

Description

public pht\Vector::unlock ( ) : void

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

Parameters

This function has no parameters.

Return Values

No return value.

Examples

Example #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();

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top