| [news.eclipse.platform.swt] Re: Priority of worker threads. |
Michael Forster wrote:
I think this is a case of a good reason:
http://java.sun.com/developer/JDCTechTips/2005/tt0727.html#1
MIke
This was what I had in mind. The java.util.concurrent package creates threads with lower priority than Swing's UI thread (i.e. 5) but since we (by using SWT) run our own UI thread with priority 5 instead of 6 we get the problems associated with inheriting the UI thread's priority anyway.
- Johan