Uses of Class
javax.realtime.HighResolutionTime

Packages that use HighResolutionTime
javax.realtime   
 

Uses of HighResolutionTime in javax.realtime
 

Subclasses of HighResolutionTime in javax.realtime
 class AbsoluteTime
          An object that represents a specific point in time given by milliseconds plus nanoseconds past the epoch (January 1, 1970, 00:00:00 GMT).
 class RelativeTime
          An object that represents a specific time interval millis/1E3+nanos/1E9 seconds long.
 

Fields in javax.realtime declared as HighResolutionTime
protected  HighResolutionTime Timer.time
           
protected  HighResolutionTime ProcessingGroupParameters.start
           
protected  HighResolutionTime ProcessingGroupParameters.period
           
protected  HighResolutionTime PeriodicParameters.start
           
 

Methods in javax.realtime that return HighResolutionTime
 HighResolutionTime ProcessingGroupParameters.getPeriod()
           
 HighResolutionTime ProcessingGroupParameters.getStart()
           
 HighResolutionTime PeriodicParameters.getStart()
          Gets the start time.
 

Methods in javax.realtime with parameters of type HighResolutionTime
 void Timer.reschedule(HighResolutionTime time)
          Change the scheduled time for this event.
 void Timed.resetTime(HighResolutionTime time)
          To set the time-out for the next invocation of doInterruptible().
 void ProcessingGroupParameters.setStart(HighResolutionTime start)
           
 void PeriodicParameters.setStart(HighResolutionTime start)
          Sets the start time.
 void OneShotTimer.reschedule(HighResolutionTime fireTime)
           
 int HighResolutionTime.compareTo(HighResolutionTime time)
          Compares this HighResolutionTime with the specified HighResolutionTime time.
 boolean HighResolutionTime.equals(HighResolutionTime time)
          Returns true if the argument time has the same type and values as this.
 void HighResolutionTime.set(HighResolutionTime time)
          Change the value represented by this to that of the given time.
static void HighResolutionTime.waitForObject(java.lang.Object target, HighResolutionTime time)
          Behaves exactly like target.wait() but with the enhancement that it waits with a precision of HighResolutionTime.
 

Constructors in javax.realtime with parameters of type HighResolutionTime
Timer(HighResolutionTime time, Clock clock, AsyncEventHandler handler)
          Constructor.
Timed(HighResolutionTime time)
          Create an instance of Timed with a timer set to time.
ProcessingGroupParameters(HighResolutionTime start, HighResolutionTime period, RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Constructor.
PeriodicTimer(HighResolutionTime start, RelativeTime interval, AsyncEventHandler handler)
          Create an instance of AsynchEvent that executes its fire() method periodically.
PeriodicTimer(HighResolutionTime start, RelativeTime interval, Clock clock, AsyncEventHandler handler)
          Create an instance of AsynchEvent that executes its fire() method periodically.
PeriodicParameters(HighResolutionTime start, RelativeTime period)
          Create a PeriodicParameters object.
PeriodicParameters(HighResolutionTime start, RelativeTime period, RelativeTime cost, RelativeTime deadline, AsyncEventHandler overrunHandler, AsyncEventHandler missHandler)
          Create a PeriodicParameters object.
OneShotTimer(HighResolutionTime fireTime, Clock clock, AsyncEventHandler handler)
          Create an instance of AsynchEvent that will execute its fire method at the expiration of the given time.
OneShotTimer(HighResolutionTime time, AsyncEventHandler handler)
          Create an instance of AsynchEvent that will execute its fire method at the expiration of the given time.