System.SysUtils.TSimpleRWSync

From RAD Studio API Documentation
Jump to: navigation, search

System.TInterfacedObjectSystem.TObjectTSimpleRWSync

Delphi

TSimpleRWSync = class(TInterfacedObject, IReadWriteSync)

C++

class PASCALIMPLEMENTATION TSimpleRWSync : public System::TInterfacedObject

Properties

Type Visibility Source Unit Parent
class public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TSimpleRWSync provides the reader/writer lock synchronization support.

TSimpleRWSync provides the reader/writer lock synchronization support in its simplest form. The implementation of TSimpleRWSync does not support shared reading locks, as suggested in the IReadWriteSync interface. TSimpleRWSync uses a critical section to provide exclusive access to both read and read/write locks.

See Also