C# Класс Azavea.Open.Common.Chronometer.TextTableReporter

A class that writes a nicely human readable text table of timing reports.
Наследование: IReporter
Показать файл Открыть проект

Открытые методы

Метод Описание
ReportEpilogue ( ) : void

Display a text epilogue.

ReportKey ( string key, int count, long totalTicks, long average, long minTicks, long maxTicks, double stddev, double variance, bool extended ) : void

Report the timing information for 1 key.

ReportPrologue ( bool printDisclaimer ) : void

Display a text prologue.

Описание методов

ReportEpilogue() публичный Метод

Display a text epilogue.
public ReportEpilogue ( ) : void
Результат void

ReportKey() публичный Метод

Report the timing information for 1 key.
public ReportKey ( string key, int count, long totalTicks, long average, long minTicks, long maxTicks, double stddev, double variance, bool extended ) : void
key string The name of the key.
count int The number of times timed.
totalTicks long The total time over all times timed.
average long The average tick time.
minTicks long The minimum tick time.
maxTicks long The maximum tick time.
stddev double The standard deviation in tick times.
variance double The variance in tick times.
extended bool Show extended stats (min, max, stddev, variance).
Результат void

ReportPrologue() публичный Метод

Display a text prologue.
public ReportPrologue ( bool printDisclaimer ) : void
printDisclaimer bool Show the disclaimer text.
Результат void