System.SysUtils.IReadWriteSync.EndRead

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndRead;

C++

virtual void __fastcall EndRead() = 0 ;

Properties

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

Description

Releases the read lock on the object.

Implement the EndRead method to provide the release of the read lock on your object. A thread calling EndRead must previously acquire a read lock on the object by calling the BeginRead method.

See Also