System.SysUtils.TSimpleRWSync.EndWrite

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndWrite;

C++

void __fastcall EndWrite();

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils TSimpleRWSync

Description

Releases the read/write lock on the object.

Call the EndWrite method to release the read/write lock on the TSimpleRWSync 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 the other threads waiting to acquire a read or a read/write lock are allowed to do so.

See Also