My question is as straight and simple as the title illustrates, put it another way, what is the equivalent method in jdk 1.5 of the allowCoreThreadTimeOut in jdk1.6? Because I do need all idle core threads released after, say 30s, if no more new tasks come in betwwen, thanks for any helpful pointers!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you need the 1.6 functionality in 1.5, then you can use the backport-util-concurrent library which retrofits newer concurrency stuff into older Java versions as a 3rd-party library. Specifically, you can get the 1.6 functionality in your 1.5 app. |
|||