REST.Types.TExecutionPerformance

From RAD Studio API Documentation
Jump to: navigation, search

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);
    void __fastcall Clear(void);
    void __fastcall PreProcessingDone(void);
    void __fastcall ExecutionDone(void);
    void __fastcall PostProcessingDone(void);
    int PreProcessingTime;
    int ExecutionTime;
    int PostProcessingTime;
    int __fastcall TotalExecutionTime(void);
};

Properties

Type Visibility Source Unit Parent
record
struct
public
REST.Types.pas
REST.Types.hpp
REST.Types REST.Types

Description

Structure that holds performance-related information that is gathered while executing a request.

Note: All values are expresed in milliseconds.

See Also