Class SoSystemTimerTask
java.lang.Object
com.openinventor.inventor.Inventor
com.openinventor.inventor.sensors.SoSystemTimerTask
- All Implemented Interfaces:
SafeDisposable
Interface used by
SoSystemTimer
to execute a task.
This object is used by SoSystemTimer
to execute a custom action when the timer is triggered
SoSensorHandler, SoSystemTimer
-
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
Modifier and TypeMethodDescriptionboolean
dispose()
Explicitly call this method to force object to dispose its unmanaged resources.boolean
Returns a boolean flag which indicates if it is safe to callSafeDisposable.dispose()
on the object.void
run()
This method is executed bySoSystemTimer
when it is triggered .Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
Method Details
-
isDisposable
public boolean isDisposable()Description copied from interface:SafeDisposable
Returns a boolean flag which indicates if it is safe to callSafeDisposable.dispose()
on the object.- Specified by:
isDisposable
in interfaceSafeDisposable
- Returns:
true
if the object can be disposed in a safe manner
-
dispose
public boolean dispose()Description copied from class:Inventor
Explicitly 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:
dispose
in interfaceSafeDisposable
- Overrides:
dispose
in classInventor
- Returns:
true
if this object native resources were successfully disposed;false
if it was already disposed or no native resources has been registered for this object.
-
run
public void run()This method is executed bySoSystemTimer
when it is triggered .
-