Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.jorphan.timer: Javadoc index of package org.apache.jorphan.timer.


Package Samples:

org.apache.jorphan.timer

Classes:

ITimer: A simple interface for measuring time intervals. An instance of this goes through the following lifecycle states: ready timer is ready to start a new measurement started timer has recorded the starting time interval point stopped timer has recorded the ending time interval point See individual methods for details. If this library has been compiled with ITimerConstants#DO_STATE_CHECKS set to 'true' the implementation will enforce this lifecycle model and throw IllegalStateException when it is violated.
JavaSystemTimer: A package-private implementation of ITimer based around Java system timer [ System.currentTimeMillis() method]. It is used when HRTimer implementation is unavailable. TimerFactory acts as the Factory for this class. MT-safety: an instance of this class is safe to be used within the same thread only.
HRTimer: A package-private implementation of ITimer based around native getTime method. It will work on any platform for which a JNI implementation of "hrtlib" library is available. TimerFactory acts as the Factory for this class. MT-safety: an instance of this class is safe to be used within the same thread only.
ITimerConstants: A package-private collection of constants used by ITimer implementations in HRTimer and JavaSystemTimer classes.
TimerFactory: This non-instantiable non-extendible class acts as a Factory for ITimer implementations.
AbstractTimer

Home | Contact Us | Privacy Policy | Terms of Service