API:System.Threading.TThreadPool.TSafeSharedInteger

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSafeSharedInteger = record

C++

struct DECLSPEC_DRECORD TSafeSharedInteger
{
private:
    int *FSharedVar;
    int __fastcall GetInteger();
    void __fastcall SetInteger(const int Value);
public:
    __fastcall TSafeSharedInteger(int &SharedVar);
    int __fastcall Increment();
    int __fastcall Decrement();
    int __fastcall CompareExchange(int Value, int Comparand);
    __property int Value = {read=GetInteger, write=SetInteger};
    TSafeSharedInteger() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
protected
System.Threading.pas
System.Threading.hpp
System.Threading TThreadPool

Description

Embarcadero Technologies does not currently have any additional information.