Package javax.events
Class Timer

Public Method disable

void disable(AsyncEventHandler handler)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Description
handler reference to the asynchronous event

This method disable a specific asynchronous event handler.

Example

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

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

See also:

EventManagement