Some questions about Java Threads and Process Priorities

Viewed 949

I have a small question about threads. On Unix systems, we have nice, which can be used to set priorities processes. OK, on ​​my system, I call some external processes, however, I would like to set priority for them. In unix, I could call other ProcessBuilder and set the nice to process I want, but in Windows, it is not possible.

If I start a thread with some priority, and use within ProcessBuilder it, the process will have the same priority as thread? Or is there some other way to do this?

Cheers

2 Answers
Related