diff --git a/openjpa-project/src/doc/manual/ref_guide_slice.xml b/openjpa-project/src/doc/manual/ref_guide_slice.xml index 1c1be4d83..b43d6e276 100644 --- a/openjpa-project/src/doc/manual/ref_guide_slice.xml +++ b/openjpa-project/src/doc/manual/ref_guide_slice.xml @@ -555,7 +555,7 @@ the JDBC connection URL of a slice. for database operations such as query or flush on individual slices. The value of the property is a fully-qualified class name that implements - + java.util.concurrent.ExecutorService interface. Two pre-defined pools can be chosen via their aliases namely @@ -563,7 +563,7 @@ the JDBC connection URL of a slice. The pre-defined alias cached activates a - cached thread pool. + cached thread pool. A cached thread pool creates new threads as needed, but will reuse previously constructed threads when they are available. This pool is suitable in scenarios that execute many short-lived asynchronous tasks. @@ -573,23 +573,23 @@ the JDBC connection URL of a slice. The fixed alias activates a - fixed thread pool. + fixed thread pool. The fixed thread pool can be further parameterized with CorePoolSize, MaximumPoolSize, KeepAliveTime and RejectedExecutionHandler. The meaning of these parameters are described in - JavaDoc. + JavaDoc. The users can exercise finer control on thread pool behavior via these parameters. By default, the core pool size is 10, maximum pool size is also 10, keep alive time is 60 seconds and rejected execution is - aborted. + aborted. Both of the pre-defined aliases can be parameterized with a fully-qualified class name that implements - + java.util.concurrent.ThreadFactory interface.