API:REST.Types.TExecutionPerformance

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TExecutionPerformance = record
    FStartTime: Cardinal;
    procedure Start;
    procedure Clear;
    procedure PreProcessingDone;
    procedure ExecutionDone;
    procedure PostProcessingDone;
  public
    PreProcessingTime: integer;
    ExecutionTime: integer;
    PostProcessingTime: integer;
    function TotalExecutionTime: integer;
  end;

C++

struct DECLSPEC_DRECORD TExecutionPerformance
{
public:
    unsigned FStartTime;
    void __fastcall Start();
    void __fastcall Clear();
    void __fastcall PreProcessingDone();
    void __fastcall ExecutionDone();
    void __fastcall PostProcessingDone();
    int PreProcessingTime;
    int ExecutionTime;
    int PostProcessingTime;
    int __fastcall TotalExecutionTime();
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
REST.Types.pas
REST.Types.hpp
REST.Types REST.Types

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.