vote up 2 vote down star

Hi,

I have a 2 processes to perform in my swing application, one to fill a list, and one to do operations on each element on the list. I've just moved the 2 processes into Swingworker threads to stop the GUI locking up while the tasks are performed, and because I will need to do this set of operations to several lists, so concurrency wouldn't be a bad idea in the first place. However, when I just ran

fillList.execute();
doStuffToList.execute();

the doStuffToList thread to ran on the empty list (duh...). How do I tell the second process to wait until the first one is done? I suppose I could just nest the second process at the end of the first one, but i dunno, it seems like bad practice.

flag

Sounds like a BlockingQueue might possibly be helpful (java.sun.com/javase/6/… ). – mmyers May 27 at 14:56

4 Answers

vote up 1 vote down check

Something like this would do it, I think?

boolean listIsFull=false;
class FillListWorker extends SwingWorker<Foo,Bar>
{
    ...
    protected void done()
    {
        synchronized (listYouveBeenFilling)
        {
            listIsFull=true;
            listYouveBeenFilling.notifyAll();
        }
    }
    ...
}

class DoStuffToListListWorker extends SwingWorker<Foo,Bar>
{
    ...
    protected Foo doInBackground()
    {
        synchronized (listYouveBeenFilling)
        {
            while (!listIsFull)
            {
                try
                {
                    listYouveBeenFilling.wait();
                }
                catch (InterruptedException ie)
                {
                    // Don't worry, we'll just wait again
                }
            }
        }
    }
    ...
}
link|flag
vote up 1 vote down

This may be what I'm looking for, but I'd like other answers too

http://www.indijava.in/community/tutorial/Using-SwingWorker-A-Step-by-Step-tutorial

link|flag
vote up 0 vote down

To perform two processes sequentially, traditionally you just call one method after the other(!).

fillList();
doStuffToList();

Or perhaps something like:

doStuffToList(fillList());

If you are processing one at a time, you might want two threads with a BlockingQueue between. You might go further by having multiple do-stuff threads.

As far as the AWT Event Dispatch Thread (EDT) is concerned it's just spun off an action without blocking, and will get notified later.

link|flag
vote up 1 vote down

How do I tell the second process to wait until the first one is done? I suppose I could just nest the second process at the end of the first one, but i dunno, it seems like bad practice.

Have you looked into using callables & futures instead? They sound like a good match for this sort of thing (letting the doStuffToList work on a Future.get() instead of the actual list, so it'll be ready when get is called), apart from the whole swingworker business.. (Consider this a suggestion rather than an answer)

link|flag
This could be exactly what I want, I'm looking into it now, thanks – Simonw May 27 at 15:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.