BiTimerManager
This is a singleton class that handles the disposal of all timers.
This class extends BiObject and therefore all methods and fields available for BiObject are also available for BiTimerManager .
Constructor
new BiTimerManager ( )
Parameters
No parameters.
Properties
None.
Methods
| Name | Description |
add | Adds a timer to manage |
remove | Removes a timer from the manager |
Events
None.
Static Methods
None.
Static Fields
None.
Remarks
This class is used to dispose all timers when the application is shut down. There is no need to manually use this class in your applications.
Method Details
add
Adds a timer to manage
Syntax
object.add ( oTimer ) Parameters
| Name | Type | Optional | Default | Descripton |
oTimer | | The BiTimer to add |
Return Type
void
remove
Removes a timer from the manager
Syntax
object.remove ( oTimer ) Parameters
| Name | Type | Optional | Default | Descripton |
oTimer | | The BiTimer to remove |
Return Type
void