The SyncReaderWriter class

(PECL sync >= 1.0.0)

Introdução

A cross-platform, native implementation of named and unnamed reader-writer objects.

A reader-writer object allows many readers or one writer to access a resource. This is an efficient solution for managing resources where access will primarily be read-only but exclusive write access is occasionally necessary.

Sinopse da classe

SyncReaderWriter {
/* Métodos */
public __construct ( string $name = ? , bool $autounlock = true )
public readlock ( int $wait = -1 ) : bool
public readunlock ( ) : bool
public writelock ( int $wait = -1 ) : bool
public writeunlock ( ) : bool
}

Índice

add a note add a note

User Contributed Notes

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