Field NORM_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
rpTask = RequestProcessor.getDefault().post( this, 0, NORM_PRIORITY );
2
t.setPriority (Thread.NORM_PRIORITY-1);
3
rp ().post (this, 0, Thread.NORM_PRIORITY);
4
setPriority(Thread.NORM_PRIORITY);
5
controlThread.setPriority(Thread.NORM_PRIORITY - 2);
6
worker.setPriority(Thread.NORM_PRIORITY + 1);
7
xmlThread.setPriority(Thread.NORM_PRIORITY-2);
8
SimpleThreadPool threadPool = new SimpleThreadPool(maxThreads, Thread.NORM_PRIORITY);
9
", Normal = " + Thread.NORM_PRIORITY +
10
Thread.currentThread().setPriority( Thread.NORM_PRIORITY );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.