SyncReaderWriter::readlock

(PECL sync >= 1.0.0)
Waits for a read lock
public bool SyncReaderWriter::readlock ([ integer $wait ] )

Obtains a read lock on a SyncReaderWriter object.

Parameters:
wait

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

Returns:

A boolean of TRUE if the lock was obtained, FALSE otherwise.

Examples:
SyncReaderWriter::readlock() example
<?php
$readwrite = new SyncReaderWriter("FileCacheLock");
$readwrite->readlock();
/* ... */
$readwrite->readunlock();
?>

See also:

SyncReaderWriter::readunlock() -

doc_php
2016-02-24 16:05:39
Comments
Leave a Comment

Please login to continue.