Java program halts execution when my computer is locked under my login. Locked does not mean locked up, like a Blue Screen of Death (BSoD).
How to continue execution when PC is locked?
Java program halts execution when my computer is locked under my login. Locked does not mean locked up, like a Blue Screen of Death (BSoD).
How to continue execution when PC is locked?
If your screen merely is locked, background processes will continue to run. However, if your PC is set to sleep or hibernate after a certain delay the when it enters sleep or hibernate mode all activity stops. The only way to prevent sleep/hibernate is to disable them yourself manually in the power profile Control Panel applet.
There may be a programmatic API for this that you could call from your program via JNI. You can find that in the Microsoft MSDN documentation.