System.SysUtils.IReadWriteSync.EndWrite
Delphi
procedure EndWrite;
C++
virtual void __fastcall EndWrite() = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | IReadWriteSync |
Description
Releases the read/write lock on the object.
Implement the EndWrite method to provide the release of the read/write lock on your object. A thread calling EndWrite must previously acquire a read/write lock on the object by calling the BeginWrite method. After a call to EndWrite, all other threads waiting to acquire a read or a read/write lock are allowed to do so.