Searched defs:Thread (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DThread.java43 * A {@code Thread} is a concurrent unit of execution. It has its own call stack
45 * machine instance has at least one main {@code Thread} running when it is
47 * application might decide to launch additional {@code Thread}s for specific
50 * {@code Thread}s in the same VM interact and synchronize by the use of shared
52 * part of the API in {@link Object} also allow {@code Thread}s to cooperate.
54 * There are basically two main ways of having a {@code Thread} execute
55 * application code. One is providing a new class that extends {@code Thread}
57 * {@code Thread} instance with a {@link Runnable} object during its creation.
59 * the new {@code Thread}.
61 * Each {@code Thread} ha
72 public class Thread implements Runnable { class in inherits:Runnable
199 public Thread() { method in class:Thread
215 public Thread(Runnable runnable) { method in class:Thread
233 public Thread(Runnable runnable, String threadName) { method in class:Thread
253 public Thread(String threadName) { method in class:Thread
277 public Thread(ThreadGroup group, Runnable runnable) { method in class:Thread
297 public Thread(ThreadGroup group, Runnable runnable, String threadName) { method in class:Thread
318 public Thread(ThreadGroup group, String threadName) { method in class:Thread
347 public Thread(ThreadGroup group, Runnable runnable, String threadName, long stackSize) { method in class:Thread
361 Thread(ThreadGroup group, String name, int priority, boolean daemon) { method in class:Thread
[all...]

Completed in 65 milliseconds