System.SysUtils.IReadWriteSync.EndWrite

From RAD Studio API Documentation
Revision as of 23:10, 16 October 2011 by PyBot (talk | contribs) (Scoping Libraries)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.

See Also