Package javax.events
Class AsyncEvent

Public Method getHandler

AsyncEventHandler getHandler(int index)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Description
index handler index

The index of the asynchronous event handler AsyncEventHandler to be retrieved.

Returns Description
handler asynchronous event handler

Returns the asynchronous event handler at the specified index. null is returned in case of an error.

Example

   private AsyncEvent evList[] = new AsyncEvent[10];
   ...
      evList[eventId].getHandler();

The example above returns the AsyncEventHandler with the specified event id.

See also:

AsyncEventHandler