Title: suspend the awt thread

Hi,

I want to suspend the awt thread but still get painting done. Is this possible?

assume this piece of code:

actionPerformed(ActionEvent e)
{
        Runnable myRunnable = new MyRunnable();
        Thread workerThread = new Thread( myRunnable );
        workerThread.start();

        // Wait here for workerThread to finish
        // but still paint!

        Oject o = myRunnable.getObject();

        // do something with o
}

You are in the actionPerformed, so this gets executed on the awt thread. The workerThread starts with some lengthy operation and we want to wait in the actionPerformed for it to finish and then continue with our work. How do I do it?

kind regards,

Wim

-------------
Ing. Wim Deblauwe
Software Development Engineer
Medical Imaging Systems - BarcoView
- - - - - - - - DISCLAIMER - - - - - - - -
Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message. Thank you.

Reply via email to