SyncReaderWriter::writelock

(PECL sync >= 1.0.0)
Waits for an exclusive write lock
public bool SyncReaderWriter::writelock ([ integer $wait ] )

Obtains an exclusive write 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::writelock() example
<?php
$readwrite = new SyncReaderWriter("FileCacheLock");
$readwrite->writelock();
/* ... */
$readwrite->writeunlock();
?>

See also:

SyncReaderWriter::writeunlock() -

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

Please login to continue.