See Also: Thread Members
Each Thread has an integer priority that basically determines the amount of CPU time the Thread gets. It can be set using the Thread.set_Priority(int) method. A Thread can also be made a daemon, which makes it run in the background. The latter also affects VM termination behavior: the VM does not terminate automatically as long as there are non-daemon threads running.