i have certain number thread running and i want to stop some of them.Is there any way to do it in java2.
Stefan Krompass
Ranch Hand
Joined: Apr 29, 2004
Posts: 75
posted
0
Hi, my solution looks something like this:
cu Stefan
Jose Botella
Ranch Hand
Joined: Jul 03, 2001
Posts: 2120
posted
0
Welcome both of you to the Ranch! allyou wantis please read our naming policy and adjust your displayed name accordingly, thank you. The running variable should have been declared volatile.
SCJP2. Please Indent your code using UBB Code
Yaroslav Chinskiy
Ranch Hand
Joined: Jan 09, 2001
Posts: 147
posted
0
Can't you use interrupt() method? Having stopWork() is great but what if this is not ur thread(does not have the method) or the thread is in sleep/wait mode, or waiting for IO (for example Socket s =server.accept())
clio katz
Ranch Hand
Joined: Apr 30, 2004
Posts: 101
posted
0
right.
both good suggestions, it seems to me!
stefan offers a nice, healthy-looking thread template, and yaroslav offers good advice about making provisions for (un)intended exit/shutdown
(i.e. "try" the 'do something' loop, "catch" InterruptedException, and possibly execute a "finally" block for clean shut-down)