When a service's onDestroy is called due to low memory, in the method, should I do something like telling the worker threads that they should end their work and then wait them to exit before letting the system kill the hosting process? If so, how much time the system would allow me to wait? Should I make the worker threads capable of end themselves as fast as possible at anytime?
Or am I completely wrong?
Or maybe I should ask:
Where is the safest or best point to clean up the worker threads? Or what is the safest or best way to do so. Or there is no such thing at all, and a thread should be prepared to be killed without notice at anytime?