What's the proper way for a Java command line application to do background work without hogging resources? Should it use sleep() in the loop or is there a more elegant/efficient way?
|
3
|
|
|
|
|
|
Some heuristics:
Of course, this is just a starter list... |
||
|
|
|
|
I'd only use sleep() if there's no work to be done. For example, if you're doing something like polling a task queue periodically and there's nothing there, sleep for a while then check again, etc. If you're just trying to make sure you don't hog the CPU but you're still doing real work, you could call Thread.yield() periodically. That will relinquish control of the CPU and let other threads run, but it won't put you to sleep. If other processes don't need the CPU you'll get control back and continue to do your work. You can also set your thread to a low priority: myThread.setPriority(Thread.MIN_PRIORITY); As Ishmael said, don't do this in your main thread. Create a "worker thread" instead. That way your UI (GUI or CLI) will still be responsive. |
||||||||||
|
|
|
There are several ways. I would use ExecutorService... for example:
This is Java 5 code, ExecutorService, Callable, Future and similar are in |
||
|
|
|
|
One place to start is to make sure that only those resources are being used and no other objects (so that they become garbage collected). Placing sleep() in a single threading application is only going to halt the current thread. If you're trying to accomplish data being processed in the background while information still needs to be presented to the user then it is best to put the background process in a seperate thread. |
||
|
|
