Package javax.events
Class AsyncEventHandler

Public Method handleAsyncEvent

abstract void handleAsyncEvent()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

The subclasses of the AsyncEventHandler must implement the actual event processing code.

Example

public class Timer extends AsyncEvent
{
...
   if (evHandlers[i] != null)
   {

The Timer class inherits from the AsyncEvent class and get access to the evHandlers[] reference.

See also:

AsyncEvent
OneShotTimerHandler
PeriodicTimerHandler
Timer