Does thread pool size keep growing for scheduledthreadpoolexecutor?
- by Sourajit Basak
Imagine a situation where tasks are being added to scheduledthreadpoolexecutor. Each of these tasks will keep on running at different periodic intervals.
Although all such tasks will not be running at the same time because each is set at different intervals, there may be a situation where a high number of threads are competing for execution.
Is…