C# 클래스 Azavea.Open.Common.Chronometer.TextCsvReporter

A class that writes a nicely machine readable text table of timing reports.
상속: IReporter
파일 보기 프로젝트 열기: azavea/net-om-utils-common

공개 메소드들

메소드 설명
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