Class SoSystemTimer
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.inventor.sensors.SoSystemTimer
-
- All Implemented Interfaces:
SafeDisposable
public abstract class SoSystemTimer extends Inventor implements SafeDisposable
Common interface to expose system dependent timers. The timer implementation usually depends on the window toolkit used (Qt, Awt, Swt...). The purpose of this class is to expose a common interface for system dependent timers. When the timer is triggered, it must call the run() method of itsSoSystemTimerTask(given by the setTask method).SoSensorHandler
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandispose()Explicitly call this method to force object to dispose its unmanaged resources.booleanisDisposable()Returns a boolean flag which indicates if it is safe to callSafeDisposable.dispose()on the object.booleanisPending()Return true if the timer is running.voidsetDelay(int time)Set the timer's timeout in milliseconds.voidsetRepeat(boolean flag)If set to true, the timer will be triggered periodically at the rate defined by setDelay.voidsetTask(SoSystemTimerTask task)Sets the task executed when the timer is triggered.voidstart()Start the timer.voidstop()Stop the timer.-
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
-
-
-
Method Detail
-
isDisposable
public boolean isDisposable()
Description copied from interface:SafeDisposableReturns a boolean flag which indicates if it is safe to callSafeDisposable.dispose()on the object.- Specified by:
isDisposablein interfaceSafeDisposable- Returns:
trueif the object can be disposed in a safe manner
-
dispose
public boolean dispose()
Description copied from class:InventorExplicitly call this method to force object to dispose its unmanaged resources. The object may not be reused in the application code after this call.- Specified by:
disposein interfaceSafeDisposable- Overrides:
disposein classInventor- Returns:
trueif this object native resources were successfully disposed;falseif it was already disposed or no native resources has been registered for this object.
-
stop
public void stop()
Stop the timer.
-
start
public void start()
Start the timer. If it is already started, stop it and restart
-
setRepeat
public void setRepeat(boolean flag)
If set to true, the timer will be triggered periodically at the rate defined by setDelay.
-
setTask
public void setTask(SoSystemTimerTask task)
Sets the task executed when the timer is triggered. When the timer is is triggered, it calls the run() method of task.
-
isPending
public boolean isPending()
Return true if the timer is running.
-
setDelay
public void setDelay(int time)
Set the timer's timeout in milliseconds.
-
-