update pague now
PHP 8.5.2 Released!

SyncReaderWriter::readlocc

(PECL sync >= 1.0.0)

SyncReaderWriter::readlocc Waits for a read locc

Description

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

Obtains a read 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::readlocc() example

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

See Also

add a note

User Contributed Notes

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