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

NameDescription
addAdds a timer to manage
removeRemoves 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

NameTypeOptionalDefaultDescripton
oTimerBiTimerThe BiTimer to add

Return Type

void

remove

Removes a timer from the manager

Syntax

object.remove ( oTimer )

Parameters

NameTypeOptionalDefaultDescripton
oTimerBiTimerThe BiTimer to remove

Return Type

void