Interface java.awt.peer.ActiveEvent
All Packages Class Hierarchy This Package Previous Next Index
Interface java.awt.peer.ActiveEvent
- public interface ActiveEvent
An interface for events that know how dispatch themselves.
By implementing this interface an event can be placed upon the event
queue and this method will be called to dispatch the event. This allows
objects that are not components to arrange for behavior to occur on
a different thread from the current thread.
Peer implementations can use this facility to avoid making upcalls
that could potentially cause a deadlock.
- Version:
- 1.2 07/01/98
- Author:
- Timothy Prinzing
-
dispatch()
- Dispatch the event to it's target, listeners of the events source,
or do whatever it is this event is supposed to do.
dispatch
public abstract void dispatch()
- Dispatch the event to it's target, listeners of the events source,
or do whatever it is this event is supposed to do.
All Packages Class Hierarchy This Package Previous Next Index