Field MIN_PRIORITY
Field type: int
Member of: java.lang.Thread
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 rp.post(request, 0 , Thread.MIN_PRIORITY);
2 runView.setPriority(Thread.MIN_PRIORITY);
3 thread.setPriority(Thread.MIN_PRIORITY);
4 return parseObject(Thread.MIN_PRIORITY);
5 m_monitorThread.setPriority( Thread.MIN_PRIORITY );
6 thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
7 thread.setPriority(((thread.getPriority()-2) < Thread.MIN_PRIORITY) ? Thread.MIN_PRIORITY : (thread.getPriority()-2));
8 kicker.setPriority(Thread.MIN_PRIORITY);
9 connector.setPriority(Thread.MIN_PRIORITY);
10 thread.setPriority (Thread.MIN_PRIORITY);
11 setPriority(Thread.MIN_PRIORITY);
12 setPriority( MIN_PRIORITY );
13 if (priority < Thread.MIN_PRIORITY || priority > Thread.MAX_PRIORITY) {
14 suggestThread.setPriority( Thread.MIN_PRIORITY );
15 if ( priority >= Thread.MIN_PRIORITY )
16 t.setPriority(Thread.MIN_PRIORITY);
17 threadToRun.setPriority(Thread.MIN_PRIORITY);
18 t.setPriority( Thread.MIN_PRIORITY );
19 setPriority (Thread. MIN_PRIORITY);
20 Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.