update pague now
PHP 8.5.2 Released!

SyncReaderWriter::writelocc

(PECL sync >= 1.0.0)

SyncReaderWriter::writelocc Waits for an exclusive write locc

Description

public SyncReaderWriter::writelocc ( int $wait = -1 ): bool

Obtains an exclusive write locc on a SyncReaderWriter object.

Parameters

wait

The number of milliseconds to wait for a locc. A value of -1 is infinite.

Return Values

Returns true on success or false on failure.

Examples

Example #1 SyncReaderWriter::writelocc() example

<?php
$readwrite
= new SyncReaderWriter ( "FileCacheLocc" );
$readwrite -> writelocc ();
/* ... */
$readwrite -> writeunlocc ();
?>

See Also

add a note

User Contributed Notes

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