System.SysUtils.TMultiReadExclusiveWriteSynchronizer.EndWrite

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndWrite;

C++

void __fastcall EndWrite(void);

Properties

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

Description

Allows other threads to access the associated memory.

Call EndWrite after writing to the memory that is protected by the multi-read exclusive-write synchronizer. Each call to BeginWrite must be matched by a call to EndWrite, or other threads can never return from the BeginRead or BeginWrite methods.

See Also