Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following Java code:

final Future future = exeService.submit(
    new Runnable() {
        public void run() {
            myObject.doSomething();
        }
    }
);

future.get();

where exeService is an instance of

java.util.concurrent.ExecutorService

The problem is that myObject.doSomething() never returns, and, hence, future.get() never returns.

However, if I replace the call to submit with a call to execute like this:

exeService.execute(
    new Runnable() {
        public void run() {
            myObject.doSomething();
        }
    }
);

the call to myObject.doSomething() does return. I don't know if it matters, but doSomething() is a void method.

Why is doSomething() finishing when using execute but not when using submit?

Also, I don't need to use Future.get(); that just seemed to be the most natural way of doing this. (I also run into the same problem with CountdownLatch.) The point is that I need to wait for doSomething() to finish before proceeding, and, for complicated reasons I won't go into here, I need to launch it on a separate thread. If there is another way of doing this that works, that would be fine.

share|improve this question
1  
You're asking about the behaviour of doSomething, but tell us nothing about it. We can't help you here ... – Joachim Sauer Apr 6 '10 at 15:15
Your question is pretty confusing. The first construct should just work. The confusion is in "returning". Don't you just mean "finishing" or "executing"? Your confusion seems to be based on the fact that future.get() actually waits for the runnable to be finished and thus will block the thread and prevent it from executing the remnant of the code after the future.get() line. – BalusC Apr 6 '10 at 15:17
How are you creating 'exeService' ? Is it a ThreadPoolExecutor or something else ? – nos Apr 6 '10 at 15:39

3 Answers

up vote 7 down vote accepted

As in Executor.execute() Javadoc:

Executes the given command at some time in the future. The command may execute in a new thread, in a pooled thread, or in the calling thread, at the discretion of the Executor implementation.

So, the method execute() returns immediately leaving you with no option to query to status of submitted task.

On the other hand ExecutorService.submit():

Submits a Runnable task for execution and returns a Future representing that task. The Future's get method will return null upon successful completion.

The Future.get() will return only after successful competion, so never in your case.

This is further noted in Future.get() documentation:

Waits if necessary for the computation to complete, and then retrieves its result.

share|improve this answer
never? So you insinuates that myObject.doSomething(); is something like an infinite loop? Why does the other construct work then? Keep in mind that void is a perfectly valid return value. – BalusC Apr 6 '10 at 15:24
I do not insinuate rather conclude :-). Author stated "The problem is that myObject.doSomething() never returns" so I assume this function is something like infinite loop (like server thread or sth). – pajton Apr 6 '10 at 15:26
Yes .. How would you then explain that it "does return" when using execute() instead of submit()? – BalusC Apr 6 '10 at 15:37
1  
It "returns" when using 'execute' since the thing is just fired off somewhere, and he never does wait for it to complete. When using submit() he does wait for it to complete, however it never does complete . If using a treadpoolExecutor there's 2 possible reasons: 1. the executor is tied up excuting something else. 2. The doSomething() never returns. e.g. it's an infinite loop. – nos Apr 6 '10 at 15:43
2  
+1 for reading into the question and breaking through the confusion of the OP – Tim Bender Apr 7 '10 at 7:05
show 3 more comments

I created an SSCCE:

package com.stackoverflow.q2585971;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;

public class Test {

    public static void main(String args[]) throws Exception {
        ExecutorService executor = Executors.newCachedThreadPool();
        Future<?> future = executor.submit(
            new Runnable() {
                public void run() {
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        System.out.println("Epic fail.");
                    }
                }
            }
        );

        System.out.println("Waiting for task to finish..");
        future.get();
        System.out.println("Task finished!");
        executor.shutdown();
    }

}

It works perfectly fine. It first prints

Waiting for task to finish..

then after one second you see

Task finished!

So, your problem lies somewhere else. I'll duplicate my comment on your question here:

Your question is pretty confusing. The first construct should just work. The confusion is in "returning". Don't you just mean "finishing" or "executing"? Your confusion seems to be based on the fact that future.get() actually waits for the runnable to be finished and thus will block the thread and prevent it from executing the remnant of the code after the future.get() line.

share|improve this answer

Check for a deadlock(s) in doSomething.

I would start with searching for wait calls.

If you wait for something, you need to signal the object you are waiting for from the other thread by calling notify or notifyAll.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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