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

What are the correct ways/practice/implementation/strategies (or whatever we call it as) for not to wait for code block/method to finish execution in Java?

Assume the following method:

private void myMethod()
{
     // Some lines of code here
     .....
     .....
     .....

     anotherMethod(); // or this could be a code block

     // Again some lines of code here
     .....
     .....
     .....
}

In this case, I expect myMethod() should not wait for code to finish execution of anotherMethod(). I can also assure here that subsequent lines of code do not depend on anything getting executed within anotherMethod().

share|improve this question
I'm seeing 2 ways of implementation given by @Bozho and @org.life.java here. Am little confused which one to choose and go with. Any advice before I choose one? – Gnanam Oct 22 '10 at 6:00

3 Answers

Use

Executor executor = Executors.newSingleThreadExecutor();
executor.execute(new Runnable() {
    @Override
    public void run() {
       anotherMethod();
    }
});
// this is called automatically when the object is gc-ed, 
// but you should not rely on this, hence the explicit call
executor.shutdown();

To quote Effective Java:

Not only should you refrain from writing your own work queues, but you should generally refrain from working directly with threads. The key abstraction is no longer Thread, which served as both the unit of work and the mechanism for executing it. Now the unit of work and mechanism are separate. The key abstraction is the unit of work, which is called a task. There are two kinds of tasks: Runnable and its close cousin, Callable (which is like Runnable, except that it returns a value). The general mechanism for executing tasks is the executor ser- vice. If you think in terms of tasks and let an executor service execute them for you, you gain great flexibility in terms of selecting appropriate execution policies. In essence, the Executor Framework does for execution what the Collections Framework did for aggregation.

Note that you'd better create your executor only once, store it in an instance field and reuse it (and shut it down afterwards)

If you are running in JavaEE 6 or spring, you can annotate your anotherMethod() with @Asynchronous and the container will start a new thread for you.

share|improve this answer
Don't forget to shutdown() the ExecutorService when you are done with it – dogbane Oct 19 '10 at 10:24
@Bozho: What is the difference in implementation between yours and the one suggested by org.life.java. – Gnanam Oct 19 '10 at 10:26
@Gnanam - mine is more Java 5+ :) his suggestion was used before, and is more low-level. – Bozho Oct 19 '10 at 10:28
1  
Code is not clear and misleading -- thread pool is expensive and should not be used just once here at method level. You also forget to dispose the thread pool. – SiLent SoNG Oct 19 '10 at 10:31
1  
Effective Java has taught me to avoid working with threads directly, hence my answer. – Bozho Oct 19 '10 at 10:49
show 8 more comments

You can start it in another Thread if there is no dependency .

new Thread(new Runnable(){

      public void run(){
           anotherMethod();
      }  

}).start();
share|improve this answer
@org.life.java: Just a small correction in your code block - it is new Thread(...){.... – Gnanam Oct 19 '10 at 10:22
@org.life.java: What is the difference in implementation between yours and the one suggested by Bozho? – Gnanam Oct 19 '10 at 10:27
@Gnanam Bozho's suggestion 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. – Jigar Joshi Oct 19 '10 at 10:31
@org, but in this case each executor uses a single thread, and he's creating a new executor every time. So as far as I can tell, it's basically the same thing with more overhead and improper cleanup. – Matthew Flaschen Oct 19 '10 at 10:34
@org.life.java: Though I've not mentioned this in my original question, actually am passing parameters to this anotherMethod();. So on compiling, am getting local variable myParams is accessed from within inner class; needs to be declared final. Here myParams object is the parameter passed to anotherMethod();. How do I solve in this case? – Gnanam Oct 19 '10 at 13:54
show 3 more comments

If you want to invoke the method in the same thread, then the method itself must provide an asynchronous (i.e. non-blocking) implementation. Usually this will involve returning some sort of callback such as a Future, which you can poll/query later to fetch the actual result. An example of this is the ExecutorService.submit() calls - the code you supply will be run, but in a background thread leaving you free to call other methods in the meantime.

I bolded the word invoke before, since fundamentally the only way in Java to have two things happening at once is to use multiple threads. So the method/code block/whatever will have to be executing in a background thread one way or another - usually this is handled for you in an asynchronous method by using some sort of thread pool or whatever is appropriate.

If the method doesn't provide an asynchronous interface, however, the only way to get its logic to run in another thread is to spawn that thread yourself, as org.life.java suggests.

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.