Package javax.events
Class AsyncEvent
AsyncEvent()
AsyncEvent(int count)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
AsyncEvent() method:
AsyncEvent constructor that creates an array of handleres that can hold just one event hander. This is the default constructor for majority asynch events.
AsyncEvent(int count) method:
Parameter | Description |
---|---|
count | number of handlers |
AsyncEvent constructor that creates an array of handleres that can hold specified number of event handers. The parameter count represents the number of handlers that can be associated with this event.
Example
AsyncEvent event = new AsyncEvent();
This example creates a new AsyncEvent instance.
See also:
Copyright © demmel products gmbh. All rights reserved.