API:REST.Types.TExecutionPerformance
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();
};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
record struct |
public | REST.Types.pas REST.Types.hpp |
REST.Types | REST.Types |
説明
このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。