ThreadPool

Configuration settings for a group of threads that the application server uses. A thread pool allows components of the server to reuse threads to eliminate the need to create new threads at runtime. Creating new threads is typically a time and resource intensive operation.



Attributes Summary
minimumSize : intThe minimum number of threads to allow in the pool.
maximumSize : intThe maximum number of threads to allow in the pool.
inactivityTimeout : intThe period of time in milliseconds after which a thread should be reclaimed due to inactivity.
isGrowable : booleanAllows the number of threads to increase beyond the maximum size configured for the thread pool.

Attribute Details

minimumSize    -    The minimum number of threads to allow in the pool.
     data type:  int
     default Value:   unspecified



maximumSize    -    The maximum number of threads to allow in the pool.
     data type:  int
     default Value:   unspecified



inactivityTimeout    -    The period of time in milliseconds after which a thread should be reclaimed due to inactivity.
     data type:  int
     default Value:   unspecified



isGrowable    -    Allows the number of threads to increase beyond the maximum size configured for the thread pool.
     data type: boolean
     default Value:   unspecified
     Allowed Values:  true   false  


Copyright IBM Corp. 1996-2002