From d868785b5f820a3b57131622b5333d50578da42a Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 24 Oct 2009 19:37:10 +0000 Subject: [PATCH] fixed DocBook structure and typo --- spring-framework-reference/src/scheduling.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/spring-framework-reference/src/scheduling.xml b/spring-framework-reference/src/scheduling.xml index bfd34a9ebe..b220fe07bc 100644 --- a/spring-framework-reference/src/scheduling.xml +++ b/spring-framework-reference/src/scheduling.xml @@ -36,7 +36,7 @@ pool; an executor may be single-threaded or even synchronous. Spring's abstraction hides implementation details between Java SE 1.4, Java SE 5 and Java EE environments. - The <interfacename>TaskExecutor</interfacename> interface + Spring's TaskExecutor interface is identical to the java.util.concurrent.Executor interface. In fact, its primary reason for existence is to abstract away @@ -85,7 +85,7 @@ invocations asynchronously. Instead, each invocation takes place in the calling thread. It is primarily used in situations where - mutlithreading isn't necessary such as simple + multithreading isn't necessary such as simple test cases. @@ -121,7 +121,7 @@ Quartz's SimpleThreadPool which listens to Spring's lifecycle callbacks. This is typically used when you have a - threadpool that may need to be shared by both + thread pool that may need to be shared by both Quartz and non-Quartz components. @@ -203,6 +203,7 @@ +
Using a <interfacename>TaskExecutor</interfacename> Spring's TaskExecutor implementations @@ -760,6 +761,7 @@ public class ExampleJob extends QuartzJobBean {
+
Using JDK Timer support