Package com.gurock.smartinspect
Class ClockResolution
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.ClockResolution
-
public class ClockResolution extends Enum
Represents the timestamp resolution mode for the Clock class.SmartInspect currently supports two different kinds of timestamp resolutions. The
standardresolution is the default timestamp behavior of the SmartInspect Java library and usually provides a maximum resolution of 10-55 milliseconds (depending on the Windows version). This is the recommended option for production systems.High-resolutiontimestamps, on the other hand, can provide a microseconds resolution but are only intended to be used on development machines.
-
-
Field Summary
Fields Modifier and Type Field Description static ClockResolutionHighRepresents timestamps with a very high resolution (microseconds).static ClockResolutionStandardRepresents the standard timestamp resolution.
-
-
-
Field Detail
-
Standard
public static final ClockResolution Standard
Represents the standard timestamp resolution. This is the default timestamp behavior of the SmartInspect Java library and the recommended option for production systems.
-
High
public static final ClockResolution High
Represents timestamps with a very high resolution (microseconds). This option is not intended to be used on production systems. SeeSmartInspect.setResolution(com.gurock.smartinspect.ClockResolution)for details.
-
-