Class Method Type
Thread yield() static
Thread try sleep(#) catch static
Thread start() instance
Thread run() instance
Thread try join(optional timeout) catch instance
Thread interrupt() instance
The yield() method may cause a running thread to back out if there are runnable threads of the same priority.
When one thread calls the join() method of another thread,
the currently running thread will wait until the thread it joins with has completed.
|