Auf Englisch lesen

Freigeben über


LockCookie Struktur

Definition

Definiert die Sperre, die die Semantik für einen Writer und mehrere Reader implementiert. Dies ist ein Werttyp.

C#
public struct LockCookie
C#
public struct LockCookie : IEquatable<System.Threading.LockCookie>
C#
[System.Serializable]
public struct LockCookie
C#
[System.Runtime.InteropServices.ComVisible(true)]
public struct LockCookie
Vererbung
LockCookie
Attribute
Implementiert

Beispiele

Das folgende Beispiel zeigt, wie Sie eine Lesersperre anfordern, die Lesersperre auf eine Writer-Sperre aktualisieren und speichern LockCookie. Anschließend wird verwendet LockCookie , um erneut ein Downgrade auf eine Lesersperre durchzuführen.

Dieser Code ist Teil eines größeren Beispiels für die ReaderWriterLock -Klasse.

C#
// 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;
C#
// Requests a reader lock, upgrades the reader lock to the writer
// lock, and downgrades it to a reader lock again.
static void UpgradeDowngrade(Random rnd, int timeOut)
{
   try {
      rwl.AcquireReaderLock(timeOut);
      try {
         // It's safe for this thread to read from the shared resource.
         Display("reads resource value " + resource);
         Interlocked.Increment(ref reads);

         // To write to the resource, either release the reader lock and
         // request the writer lock, or upgrade the reader lock. Upgrading
         // the reader lock puts the thread in the write queue, behind any
         // other threads that might be waiting for the writer lock.
         try {
            LockCookie lc = rwl.UpgradeToWriterLock(timeOut);
            try {
               // It's safe for this thread to read or write from the shared resource.
               resource = rnd.Next(500);
               Display("writes resource value " + resource);
               Interlocked.Increment(ref writes);
            }
            finally {
               // Ensure that the lock is released.
               rwl.DowngradeFromWriterLock(ref lc);
            }
         }
         catch (ApplicationException) {
            // The upgrade request timed out.
            Interlocked.Increment(ref writerTimeouts);
         }

         // If the lock was downgraded, it's still safe to read from the resource.
         Display("reads resource value " + resource);
         Interlocked.Increment(ref reads);
      }
      finally {
         // Ensure that the lock is released.
         rwl.ReleaseReaderLock();
      }
   }
   catch (ApplicationException) {
      // The reader lock request timed out.
      Interlocked.Increment(ref readerTimeouts);
   }
}
C#
}

Methoden

Equals(LockCookie)

Gibt an, ob die aktuelle Instanz und der angegebene LockCookie gleich sind.

Equals(Object)

Gibt an, ob ein angegebenes Objekt ein LockCookie und gleich der aktuellen Instanz ist.

GetHashCode()

Gibt den Hashcode für diese Instanz zurück.

Operatoren

Equality(LockCookie, LockCookie)

Gibt an, ob zwei LockCookie-Strukturen gleich sind.

Inequality(LockCookie, LockCookie)

Gibt an, ob zwei LockCookie-Strukturen ungleich sind.

Gilt für:

Produkt Versionen
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 2.0, 2.1

Threadsicherheit

Dieser Typ ist threadsicher.

Weitere Informationen