Renamed the 'size' attribute to 'pool-size' for the <executor/> and <scheduler/> elements in the task namespace.

This commit is contained in:
Mark Fisher
2009-09-25 14:19:42 +00:00
parent cafc106ccc
commit 80ac130dfe
5 changed files with 20 additions and 20 deletions

View File

@@ -9,10 +9,10 @@
<task:executor id="default"/>
<task:executor id="singleSize" size="42"/>
<task:executor id="singleSize" pool-size="42"/>
<task:executor id="rangeWithBoundedQueue" size="7-42" queue-capacity="11"/>
<task:executor id="rangeWithBoundedQueue" pool-size="7-42" queue-capacity="11"/>
<task:executor id="rangeWithUnboundedQueue" size="0-9" keep-alive="37"/>
<task:executor id="rangeWithUnboundedQueue" pool-size="0-9" keep-alive="37"/>
</beans>

View File

@@ -9,6 +9,6 @@
<task:scheduler id="defaultScheduler"/>
<task:scheduler id="customScheduler" size="42"/>
<task:scheduler id="customScheduler" pool-size="42"/>
</beans>