Re: How do I trigger an event in the AWT thread from another thread in JDK1.1?
Posted By:
dan_stahlke
Posted On:
Wednesday, February 26, 2003 07:41 PM
I finally found a solution that works for my purpose. The network connection thread triggers an event in AWT by calling a component's update() method. This works for me because redrawing the screen happened to be the event that I needed. I still don't know how to call an arbitrary function in the AWT thread from another thread.