Package javax.events
Class Timer

Public Method enable

void enable(AsyncEventHandler handler)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Description
handler reference to the asynchronous event

This method enables a specific asynchronous event handler.

Example

   Timer timer = new Timer();
   ...
      this.timer.enable(event);

This example creates a new Timer instance and enables this timer.

See also:

EventManagement