I have a java application deployed in Websphere server. I am using the thread pool in my application with size 150. apart from these, application server threads will be running. So is there a way to determine the maximum number of threads that can run in the application at any time?
EDIT: I mean is there a way I say that the thread count at any time will not exceed some fixed number?
I am not creating any other thread in the application.
Using the threadpoolexecutor with size 150 to create any threads.
+application server threads.
So like, I can say my application can create maximum of 150 threads can I say how much an application server create at the maximum?
Thanks