fixed DocBook structure and typo

This commit is contained in:
Sam Brannen 2009-10-24 19:37:10 +00:00
parent 83f3df14bd
commit d868785b5f
1 changed files with 5 additions and 3 deletions

View File

@ -36,7 +36,7 @@
pool; an executor may be single-threaded or even synchronous. pool; an executor may be single-threaded or even synchronous.
Spring's abstraction hides implementation details between Spring's abstraction hides implementation details between
Java SE 1.4, Java SE 5 and Java EE environments.</para> Java SE 1.4, Java SE 5 and Java EE environments.</para>
<title>The <interfacename>TaskExecutor</interfacename> interface</title>
<para>Spring's <interfacename>TaskExecutor</interfacename> interface is <para>Spring's <interfacename>TaskExecutor</interfacename> interface is
identical to the <classname>java.util.concurrent.Executor</classname> identical to the <classname>java.util.concurrent.Executor</classname>
interface. In fact, its primary reason for existence is to abstract away interface. In fact, its primary reason for existence is to abstract away
@ -85,7 +85,7 @@
invocations asynchronously. Instead, each invocations asynchronously. Instead, each
invocation takes place in the calling thread. It invocation takes place in the calling thread. It
is primarily used in situations where is primarily used in situations where
mutlithreading isn't necessary such as simple multithreading isn't necessary such as simple
test cases. test cases.
</para> </para>
</listitem> </listitem>
@ -121,7 +121,7 @@
Quartz's <classname>SimpleThreadPool</classname> Quartz's <classname>SimpleThreadPool</classname>
which listens to Spring's lifecycle callbacks. which listens to Spring's lifecycle callbacks.
This is typically used when you have a 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. Quartz and non-Quartz components.
</para> </para>
</listitem> </listitem>
@ -203,6 +203,7 @@
</itemizedlist> </itemizedlist>
</section> </section>
<section id="scheduling-task-executor-usage"> <section id="scheduling-task-executor-usage">
<title>Using a <interfacename>TaskExecutor</interfacename></title> <title>Using a <interfacename>TaskExecutor</interfacename></title>
<para>Spring's <interfacename>TaskExecutor</interfacename> implementations <para>Spring's <interfacename>TaskExecutor</interfacename> implementations
@ -760,6 +761,7 @@ public class ExampleJob extends QuartzJobBean {
</para> </para>
</section> </section>
</section> </section>
<section id="scheduling-jdk-timer"> <section id="scheduling-jdk-timer">
<title>Using JDK Timer support</title> <title>Using JDK Timer support</title>
<para> <para>