Java - How to stop or pause a thread?

Started by
4 comments, last by Aliii 12 years ago
Ive read that stop() is deprecated, but its not reacting to interrupt or suspend either.

So I extended an AsyncTask class and overrode some methods.
Ive read that this while( running) magic is like "killing the thread manually".
Is there any better solution? I think that a while looping continuously in the background is not too efficient.

(Plus: could somebody tell me what exactly thread.join() does?
"[color=#000000]Blocks the calling thread until a thread terminates, while continuing to perform standard COM and SendMessage pumping."
...yes, sure:))

Thanks!
..................................................
public void stop(){
running= false;
}

public void pause(){
paused= true;
}

public void resume(){
paused= false;
}


@Override
protected String doInBackground(Integer... params) {

running= true;
paused= false;

while(running){

if( paused){
...do nothing
}
else{

....do stuff

}
}

return null;
}
Advertisement
You should not use boolean variables to signal to a thread; that is subject to race conditions and can easily produce undesirable nondeterministic behavior.

Instead, use a thread synchronization primitive such as a condition variable or semaphore to signal when you want your thread to run. This allows the OS to control the thread properly, and will have the added bonus of making your thread consume no CPU resources when it is not active.

Wielder of the Sacred Wands
[Work - ArenaNet] [Epoch Language] [Scribblings]

"[color=#000000]Blocks the calling thread until a thread terminates, while continuing to perform standard COM and SendMessage pumping."[/quote]

That is .Net.

AsyncTask[/quote]

That is Android.

stop() is deprecated,[/quote]

And that is JDK/JEE's Thread class.

So the original question mixes some 3 different platforms.


For which of those is the question intended?

Is there any better solution?[/quote]

For what exactly? Threads are created, they run and then terminate. Stopping or otherwise interferring with them has long been abandoned due to problems it causes.

What are you really trying to accomplish?
Threads on every platform already have built-in suspend/resume mechanisms, you should those instead of rolling your own.

For what exactly? Threads are created, they run and then terminate. Stopping or otherwise interferring with them has long been abandoned due to problems it causes.[/quote]
For very long-running tasks it's important for the user to be able to suspend the process at any given time, and suspend/resume is much better in that respect than destroying and recreating every thread used. If you use the mechanisms provided by your OS (and transparently interfaced by Java) it will work perfectly too.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”


Threads on every platform already have built-in suspend/resume mechanisms, you should those instead of rolling your own.

This isn't a good idea (depending on exactly what you mean by built-in suspend resume mechanisms). It you suspend a thread while it has a lock held, that's a great way to bring the rest of your application to a stand-still.



For very long-running tasks it's important for the user to be able to suspend the process at any given time.
[/quote]
As ApochPiQ said, primitives such as condition variables and semaphores are the things to use.

I agree with what you say about not having to (re)create threads on a regular basis, but the correct way to feed them work is to use queues of tasks or data. Many environments will provide suitable queues out the box, which will use the aforementioned primitives internally. I'm sure this is true of Java, in particular
Thanks for the answers!


You should not use boolean variables to signal to a thread; that is subject to race conditions and can easily produce undesirable nondeterministic behavior.

Instead, use a thread synchronization primitive such as a condition variable or semaphore to signal when you want your thread to run. This allows the OS to control the thread properly, and will have the added bonus of making your thread consume no CPU resources when it is not active.


Ive found a piece of code that does something like that, but I dont think I can do this with AsyncTask. I dont know what that constructor does([font=Consolas, Menlo, Monaco,]runner [/font][font=Consolas, Menlo, Monaco,]=[/font][font=Consolas, Menlo, Monaco,] [/font][font=Consolas, Menlo, Monaco,]new[/font][font=Consolas, Menlo, Monaco,] [/font][font=Consolas, Menlo, Monaco,]Thread[/font][font=Consolas, Menlo, Monaco,]([/font][font=Consolas, Menlo, Monaco,]this[/font][font=Consolas, Menlo, Monaco,]);[/font]). However Ive found an AsyncTask.cancel() method that stops the thread just fine(if I handle the interrupt-exception in the run method), but there is no pause/resume method. Is it OK if I declare that pause boolean volatile and do it that way? I guess that will consume CPU too. Or should I save the threads state when I stop it and reload from that when is start it again(resume)? Thanks!


[color=#00008B][background=transparent]private[/background][background=transparent] [/background][color=#00008B][background=transparent]volatile[/background][background=transparent] [/background][color=#2B91AF][background=transparent]Thread[/background][background=transparent] runner[/background][background=transparent];[/background]

[color=#00008B][background=transparent]public[/background][background=transparent] [/background][color=#00008B][background=transparent]synchronized[/background][background=transparent] [/background][color=#00008B][background=transparent]void[/background][background=transparent] startThread[/background][background=transparent](){[/background]
[background=transparent] [/background][color=#00008B][background=transparent]if[/background][background=transparent]([/background][background=transparent]runner [/background][background=transparent]==[/background][background=transparent] [/background][color=#00008B][background=transparent]null[/background][background=transparent]){[/background]
[background=transparent] runner [/background][background=transparent]=[/background][background=transparent] [/background][color=#00008B][background=transparent]new[/background][background=transparent] [/background][color=#2B91AF][background=transparent]Thread[/background][background=transparent]([/background][color=#00008B][background=transparent]this[/background][background=transparent]);[/background]
[background=transparent] runner[/background][background=transparent].[/background][background=transparent]start[/background][background=transparent]();[/background]
[background=transparent] [/background][background=transparent]}[/background]
[background=transparent]}[/background]

[color=#00008B][background=transparent]public[/background][background=transparent] [/background][color=#00008B][background=transparent]synchronized[/background][background=transparent] [/background][color=#00008B][background=transparent]void[/background][background=transparent] stopThread[/background][background=transparent](){[/background]
[background=transparent] [/background][color=#00008B][background=transparent]if[/background][background=transparent]([/background][background=transparent]runner [/background][background=transparent]!=[/background][background=transparent] [/background][color=#00008B][background=transparent]null[/background][background=transparent]){[/background]
[background=transparent] [/background][color=#2B91AF][background=transparent]Thread[/background][background=transparent] moribund [/background][background=transparent]=[/background][background=transparent] runner[/background][background=transparent];[/background]
[background=transparent] runner [/background][background=transparent]=[/background][background=transparent] [/background][color=#00008B][background=transparent]null[/background][background=transparent];[/background]
[background=transparent] moribund[/background][background=transparent].[/background][background=transparent]interrupt[/background][background=transparent]();[/background]
[background=transparent] [/background][background=transparent]}[/background]
[background=transparent]}[/background]

[color=#00008B][background=transparent]public[/background][background=transparent] [/background][color=#00008B][background=transparent]void[/background][background=transparent] run[/background][background=transparent](){[/background]
[background=transparent] [/background][color=#00008B][background=transparent]while[/background][background=transparent]([/background][color=#2B91AF][background=transparent]Thread[/background][background=transparent].[/background][background=transparent]currentThread[/background][background=transparent]()[/background][background=transparent] [/background][background=transparent]==[/background][background=transparent] runner[/background][background=transparent]){[/background]
[background=transparent] [/background][color=gray][background=transparent]//do stuff which can be interrupted if necessary[/background]
[background=transparent] [/background][background=transparent]}[/background]
[background=transparent]}[/background]

This topic is closed to new replies.

Advertisement