I need to know what happens
- when it is sleeping?
- when it is running i.e., it is executing the given task.
Thanks in advance.
|
I need to know what happens
Thanks in advance. |
||||
|
|
|
Judging by your previous questions, I assume you are interested in Java's behavior. In Java, an For more information, look here: For .NET languages, a Please tag your question with the language you want an answer for. |
|||||
|
|
Interrupting a thread is a state-safe way to cancel it, but the thread itself has to be coded to pay attention to interrupts. Long, blocking Java operations that throw The If a thread doesn't check for interruptions, it cannot safely be stopped. |
|||
|