LockCookie 構造体

定義

シングル ライター/マルチリーダー セマンティクスを実装するロックを定義します。 これは値型です。

public value class LockCookie : IEquatable<System::Threading::LockCookie>
public value class LockCookie
public struct LockCookie : IEquatable<System.Threading.LockCookie>
public struct LockCookie
[System.Serializable]
public struct LockCookie
[System.Runtime.InteropServices.ComVisible(true)]
public struct LockCookie
type LockCookie = struct
[<System.Serializable>]
type LockCookie = struct
[<System.Runtime.InteropServices.ComVisible(true)>]
type LockCookie = struct
Public Structure LockCookie
Implements IEquatable(Of LockCookie)
Public Structure LockCookie
継承
LockCookie
属性
実装

次の例は、リーダー ロックを要求し、リーダー ロックをライター ロックにアップグレードして、 LockCookieを保存する方法を示しています。 その後、 LockCookie を使用してリーダー ロックに再度ダウングレードします。

このコードは、 ReaderWriterLock クラスに提供されるより大きな例の一部です。

// 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
// 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);
   }
}
' Requests a reader lock, upgrades the reader lock to the writer
' lock, and downgrades it to a reader lock again.
Sub UpgradeDowngrade(rnd As Random, timeOut As Integer)
   Try
      rwl.AcquireReaderLock(timeOut)
      Try
         ' It's safe for this thread to read from the shared resource.
         Display("reads resource value " & resource)
         Interlocked.Increment(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
            Dim lc As LockCookie = 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(writes)
            Finally
               ' Ensure that the lock is released.
               rwl.DowngradeFromWriterLock(lc)
            End Try
         Catch ex As ApplicationException
            ' The upgrade request timed out.
            Interlocked.Increment(writerTimeouts)
         End Try
         
         ' If the lock was downgraded, it's still safe to read from the resource.
         Display("reads resource value " & resource)
         Interlocked.Increment(reads)
      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

メソッド

名前 説明
Equals(LockCookie)

現在のインスタンスが指定した LockCookieと等しいかどうかを示します。

Equals(Object)

指定したオブジェクトが LockCookie であり、現在のインスタンスと等しいかどうかを示します。

GetHashCode()

このインスタンスのハッシュ コードを返します。

演算子

名前 説明
Equality(LockCookie, LockCookie)

2 つの LockCookie 構造体が等しいかどうかを示します。

Inequality(LockCookie, LockCookie)

2 つの LockCookie 構造体が等しくないかどうかを示します。

適用対象

スレッド セーフ

この型はスレッド セーフです。

こちらもご覧ください