Priorities
Priority per thread :
- No real-time priorities,
- Initiated to the creator’s priority.
-
public class Thread implements Runnable {
public final static int MIN_PRIORITY; // 1
public final static int NORM_PRIORITY; // 5
public final static int MAX_PRIORITY; // 10
public final int getPriority();
public final void setPriority(int);