C# Class HdrHistogram.TimeStamp

Helper methods to get time periods based in system stopwatch units.
ファイルを表示 Open project: HdrHistogram/HdrHistogram.NET

Public Methods

Method Description
Hours ( int hours ) : long

Return a long representing the number system timer ticks that occur over the provided number of hours.

Minutes ( long minutes ) : long

Return a long representing the number system timer ticks that occur over the provided number of minutes.

Seconds ( long seconds ) : long

Return a long representing the number system timer ticks that occur over the provided number of seconds.

Method Details

Hours() public static method

Return a long representing the number system timer ticks that occur over the provided number of hours.
public static Hours ( int hours ) : long
hours int A number hours to represent.
return long

Minutes() public static method

Return a long representing the number system timer ticks that occur over the provided number of minutes.
public static Minutes ( long minutes ) : long
minutes long A number minutes to represent.
return long

Seconds() public static method

Return a long representing the number system timer ticks that occur over the provided number of seconds.
public static Seconds ( long seconds ) : long
seconds long A number seconds to represent.
return long