SyncReaderWriter::__construct
Constructs a new SyncReaderWriter object
&reftitle.description;
public SyncReaderWriter::__construct
stringname
boolautounlock&true;
Constructs a named or unnamed reader-writer object.
&reftitle.parameters;
name
The name of the reader-writer if this is a named reader-writer object.
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.
autounlock
Specifies whether or not to automatically unlock the reader-writer at the
conclusion of the PHP script.
If an object is: A named reader-writer with an autounlock of FALSE, the
object is locked for either reading or writing, and the PHP script concludes
before the object is unlocked, then the underlying objects will end up in an
inconsistent state.
&reftitle.returnvalues;
The new SyncReaderWriter object.
&reftitle.errors;
An exception is thrown if the reader-writer cannot be created or opened.
&reftitle.examples;
SyncReaderWriter::__construct example
readlock();
/* ... */
$readwrite->readunlock();
$readwrite->writelock();
/* ... */
$readwrite->writeunlock();
?>
]]>
&reftitle.seealso;
SyncReaderWriter::readlock
SyncReaderWriter::readunlock
SyncReaderWriter::writelock
SyncReaderWriter::writeunlock