Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What is ReaderWriter Locks
What is ReaderWriter Locks ?
✍: Guest
You may want to lock a resource only when data is being written and permit multiple clients to simultaneously read data when data is not being updated. The ReaderWriterLock class enforces exclusive access to a resource while a thread is modifying the resource, but it allows nonexclusive access when reading the resource. ReaderWriter locks are a usefulalternative to exclusive locks that cause other threads to wait, even when those threads do not need to update data.
2007-10-22, 5028👍, 0💬
Popular Posts:
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...
How many types of validation controls are provided by ASP.NET ? There are six main types of validati...
How to set a HTML document's background color? document.bgcolor property can be set to any appropria...
How to measure functional software requirement specification (SRS) documents? Well, we need to defin...
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the da...