ReaderWriterLock.ReleaseWriterLock メソッド
アセンブリ: mscorlib (mscorlib.dll 内)



ReleaseWriterLock を呼び出すと、ライタ ロック カウントがデクリメントされます。ロック カウントが 0 になると、ライタ ロックが解放されます。
![]() |
---|
スレッドがリーダー ロックを保持している場合、またはスレッドがロックを保持していない場合に ReleaseWriterLock を呼び出すと、ApplicationException がスローされます。 |

' The complete code is located in the ReaderWriterLock ' class topic. Imports System Imports System.Threading Imports Microsoft.VisualBasic Public Class Test ' Declaring the ReaderWriterLock at the class level ' makes it visible to all threads. Private Shared rwl As New ReaderWriterLock() ' For this example, the shared resource protected by the ' ReaderWriterLock is just an integer. Private Shared resource As Integer = 0 <br /><span space="preserve">...</span><br /> ' Shows how to request and release the writer lock, and ' how to handle time-outs. Shared Sub WriteToResource(timeOut As Integer) Try rwl.AcquireWriterLock(timeOut) Try ' It is 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.ReleaseWriterLock() End Try Catch ex As ApplicationException ' The writer lock request timed out. Interlocked.Increment(writerTimeouts) End Try End Sub 'WriteToResource <br /><span space="preserve">...</span><br />End Class 'Test
// The complete code is located in the ReaderWriterLock // class topic. using System; using System.Threading; public class Test { // Declaring the ReaderWriterLock at the class level // makes it visible to all threads. static ReaderWriterLock rwl = new ReaderWriterLock(); // For this example, the shared resource protected by the // ReaderWriterLock is just an integer. static int resource = 0; <br /><span space="preserve">...</span><br /> // Shows how to request and release the writer lock, and // how to handle time-outs. static void WriteToResource(int timeOut) { try { rwl.AcquireWriterLock(timeOut); try { // It is 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.ReleaseWriterLock(); } } catch (ApplicationException) { // The writer lock request timed out. Interlocked.Increment(ref writerTimeouts); } } <br /><span space="preserve">...</span><br />}
// The complete code is located in the ReaderWriterLock // class topic. using namespace System; using namespace System::Threading; public ref class Test { public: // Declaring the ReaderWriterLock at the class level // makes it visible to all threads. static ReaderWriterLock^ rwl = gcnew ReaderWriterLock; // For this example, the shared resource protected by the // ReaderWriterLock is just an integer. static int resource = 0; <br /><span space="preserve">...</span><br /> // Shows how to request and release the writer lock, and // how to handle time-outs. static void WriteToResource( int timeOut ) { try { rwl->AcquireWriterLock( timeOut ); try { // It is safe for this thread to read or write // from the shared resource. resource = rnd->Next( 500 ); Display( String::Format( "writes resource value {0}", resource ) ); Interlocked::Increment( writes ); } finally { // Ensure that the lock is released. rwl->ReleaseWriterLock(); } } catch ( ApplicationException^ ) { // The writer lock request timed out. Interlocked::Increment( writerTimeouts ); } } <br /><span space="preserve">...</span><br />};
// The complete code is located in the ReaderWriterLock // class topic. import System.*; import System.Threading.*; import System.Threading.Thread; public class Test { // Declaring the ReaderWriterLock at the class level // makes it visible to all threads. private static ReaderWriterLock rwl = new ReaderWriterLock(); // For this example, the shared resource protected by the // ReaderWriterLock is just an integer. private static int resource = 0; <br /><span space="preserve">...</span><br /> // Shows how to request and release the writer lock, and // how to handle time-outs. static void WriteToResource(int timeOut) { try { rwl.AcquireWriterLock(timeOut); try { // It is 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.ReleaseWriterLock(); } } catch (ApplicationException exp) { // The writer lock request timed out. Interlocked.Increment(writerTimeouts); } } //WriteToResource <br /><span space="preserve">...</span><br />}

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からReaderWriterLock.ReleaseWriterLock メソッドを検索する場合は、下記のリンクをクリックしてください。

- ReaderWriterLock.ReleaseWriterLock メソッドのページへのリンク