Executing Threads
start()
- Activates the thread and calls run().
stop()
- Forces the thread to stop.
suspend()
- Temporarily halt the thread.
- equivalent to UNIX’s “kill -9”
join()
- Wait for the death of a thread.
sleep(long)
- Sleep for a number of milliseconds.