1 | start calls run method as an independent activity |
2 | stop irrevocably terminates a thread |
3 | isAlive returns true if thread started but not terminated |
4 | suspend temporarily halts a thread |
5 | resume makes thread to continue if it was suspended |
6 | sleep suspends for a given time |
7 | join suspends caller till the target thread completes |
8 | interrupt causes a sleep, wait, or join to abort with InterruptedException |