How long (in milliseconds) to keep the Thread or ThreadPool active after completing a task before terminating it.
Keeping the Thread or ThreadPool open will decrease repeat startup times, but will cause the program to hang and not exit if the Thread.close method is not called.
Default is 0 (close immediately).
How long (in milliseconds) to keep the Thread or ThreadPool active after completing a task before terminating it. Keeping the
Thread
orThreadPool
open will decrease repeat startup times, but will cause the program to hang and not exit if the Thread.close method is not called. Default is0
(close immediately).