ReaderWriterLock.AnyWritersSince(Int32) Methode

Definitie

Geeft aan of de schrijververgrendeling is verleend aan een thread sinds het volgnummer is verkregen.

public:
 bool AnyWritersSince(int seqNum);
public bool AnyWritersSince(int seqNum);
member this.AnyWritersSince : int -> bool
Public Function AnyWritersSince (seqNum As Integer) As Boolean

Parameters

seqNum
Int32

Het reeksnummer.

Retouren

true indien de schrijververgrendeling is verleend aan een thread sinds het volgnummer is verkregen; anders, false.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u de AnyWritersSince methode en de WriterSeqNum eigenschap gebruikt om te bepalen of een andere thread de schrijververgrendeling heeft verkregen voor de beveiligde resource, omdat de huidige thread de schrijververgrendeling het laatst heeft bewaard.

Deze code maakt deel uit van een groter voorbeeld voor de ReaderWriterLock klasse.

// The complete code is located in the ReaderWriterLock class topic.
using System;
using System.Threading;

public class Example
{
   static ReaderWriterLock rwl = new ReaderWriterLock();
   // Define the shared resource protected by the ReaderWriterLock.
   static int resource = 0;
' The complete code is located in the ReaderWriterLock class topic.
Imports System.Threading

Public Module Example
   Private rwl As New ReaderWriterLock()
   ' Define the shared resource protected by the ReaderWriterLock.
   Private resource As Integer = 0
// Release all locks and later restores the lock state.
// Uses sequence numbers to determine whether another thread has
// obtained a writer lock since this thread last accessed the resource.
static void ReleaseRestore(Random rnd, int timeOut)
{
   int lastWriter;

   try {
      rwl.AcquireReaderLock(timeOut);
      try {
         // It's safe for this thread to read from the shared resource,
         // so read and cache the resource value.
         int resourceValue = resource;     // Cache the resource value.
         Display("reads resource value " + resourceValue);
         Interlocked.Increment(ref reads);

         // Save the current writer sequence number.
         lastWriter = rwl.WriterSeqNum;

         // Release the lock and save a cookie so the lock can be restored later.
         LockCookie lc = rwl.ReleaseLock();

         // Wait for a random interval and then restore the previous state of the lock.
         Thread.Sleep(rnd.Next(250));
         rwl.RestoreLock(ref lc);

         // Check whether other threads obtained the writer lock in the interval.
         // If not, then the cached value of the resource is still valid.
         if (rwl.AnyWritersSince(lastWriter)) {
            resourceValue = resource;
            Interlocked.Increment(ref reads);
            Display("resource has changed " + resourceValue);
         }
         else {
            Display("resource has not changed " + resourceValue);
         }
      }
      finally {
         // Ensure that the lock is released.
         rwl.ReleaseReaderLock();
      }
   }
   catch (ApplicationException) {
      // The reader lock request timed out.
      Interlocked.Increment(ref readerTimeouts);
   }
}
' Release all locks and later restores the lock state.
' Uses sequence numbers to determine whether another thread has
' obtained a writer lock since this thread last accessed the resource.
Sub ReleaseRestore(rnd As Random ,timeOut As Integer)
   Dim lastWriter As Integer
   
   Try
      rwl.AcquireReaderLock(timeOut)
      Try
         ' It's safe for this thread to read from the shared resource,
         ' so read and cache the resource value.
         Dim resourceValue As Integer = resource
         Display("reads resource value " & resourceValue)
         Interlocked.Increment(reads)
         
         ' Save the current writer sequence number.
         lastWriter = rwl.WriterSeqNum
         
         ' Release the lock and save a cookie so the lock can be restored later.
         Dim lc As LockCookie = rwl.ReleaseLock()
         
         ' Wait for a random interval and then restore the previous state of the lock.
         Thread.Sleep(rnd.Next(250))
         rwl.RestoreLock(lc)
        
         ' Check whether other threads obtained the writer lock in the interval.
         ' If not, then the cached value of the resource is still valid.
         If rwl.AnyWritersSince(lastWriter) Then
            resourceValue = resource
            Interlocked.Increment(reads)
            Display("resource has changed " & resourceValue)
         Else
            Display("resource has not changed " & resourceValue)
         End If
      Finally
         ' Ensure that the lock is released.
         rwl.ReleaseReaderLock()
      End Try
   Catch ex As ApplicationException
      ' The reader lock request timed out.
      Interlocked.Increment(readerTimeouts)
   End Try
End Sub
}
End Module

Opmerkingen

U kunt de prestaties van toepassingen gebruiken WriterSeqNum en AnyWritersSince verbeteren. Een thread kan bijvoorbeeld de informatie in de cache opslaan die wordt verkregen tijdens het vasthouden van een lezervergrendeling. Nadat de vergrendeling is vrijgegeven en later opnieuw is geïnstalleerd, kan de thread worden gebruikt AnyWritersSince om te bepalen of andere threads in de tussentijd naar de resource zijn geschreven. Zo niet, dan kunnen de gegevens in de cache worden gebruikt. Deze techniek is handig wanneer het lezen van de informatie die wordt beveiligd door de vergrendeling duur is; Bijvoorbeeld het uitvoeren van een databasequery.

De beller moet een lezervergrendeling of een schrijfvergrendeling bevatten om het volgnummer nuttig te kunnen maken.

Van toepassing op

Zie ook