fixed namespace example (SPR-6766)

This commit is contained in:
Juergen Hoeller
2010-01-27 13:48:57 +00:00
parent 0a4a09a09d
commit d13f0c8052

View File

@@ -498,7 +498,7 @@ public class TaskExecutorExample {
example.</para>
<programlisting language="xml"><![CDATA[<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="someObject" method="someMethod" fixed-delay="5000"/>
<task:scheduled-tasks/>
</task:scheduled-tasks>
<task:scheduler id="myScheduler" pool-size="10"/>]]></programlisting>
@@ -511,7 +511,7 @@ public class TaskExecutorExample {
<programlisting language="xml"><![CDATA[<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="someObject" method="someMethod" fixed-rate="5000"/>
<task:scheduled ref="anotherObject" method="anotherMethod" cron="*/5 * * * * MON-FRI"/>
<task:scheduled-tasks/>
</task:scheduled-tasks>
<task:scheduler id="myScheduler" pool-size="10"/>]]></programlisting>
</section>