CakeFest 2024: The Official CakePHP Conference

SyncMutex::__construct

(PECL sync >= 1.0.0)

SyncMutex::__constructConstructs a new SyncMutex object

Descripción

public SyncMutex::__construct(string $name = ?)

Constructs a named or unnamed countable mutex.

Parámetros

name

The name of the mutex if this is a named mutex object.

Nota:

If the name already exists, it must be able to be opened by the current user that the process is running as or an exception will be thrown with a meaningless error message.

Valores devueltos

The new SyncMutex object.

Errores/Excepciones

An exception is thrown if the mutex cannot be created or opened.

Ejemplos

Ejemplo #1 SyncMutex::__construct() named mutex with lock timeout example

<?php
$mutex
= new SyncMutex("UniqueName");

if (!
$mutex->lock(3000))
{
echo
"Unable to lock mutex.";

exit();
}

/* ... */

$mutex->unlock();
?>

Ejemplo #2 SyncMutex::__construct() unnamed mutex example

<?php
$mutex
= new SyncMutex();

$mutex->lock();

/* ... */

$mutex->unlock();
?>

Ver también

add a note

User Contributed Notes

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