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 : IntegerThe minimum number of threads to allow in the pool.
maximumSize : IntegerThe maximum number of threads to allow in the pool.
inactivityTimeout : IntegerThe period of time 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:  Integer
     default Value:   unspecified



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



inactivityTimeout    -    The period of time after which a thread should be reclaimed due to inactivity.
     data type:  Integer
     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


Copyright IBM Corp. 1996-2002