REST.Types.TExecutionPerformance

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

TExecutionPerformance = record

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();
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
REST.Types.pas
REST.Types.hpp
REST.Types REST.Types


説明

要求の実行中に収集されたパフォーマンス関連情報を保持する構造体です。

メモ: すべての値はミリ秒単位で表されます。

関連項目