The <poller/> element now accepts the "interval" attribute for an IntervalTrigger instead of "period".

This commit is contained in:
Mark Fisher
2008-09-24 19:40:38 +00:00
parent b52a2bb551
commit b0fc5da6a2
14 changed files with 22 additions and 22 deletions

View File

@@ -16,7 +16,7 @@
<file:inbound-channel-adapter id="filesIn"
directory="file:${java.io.tmpdir}/spring-integration-samples/input">
<integration:poller period="5000"/>
<integration:poller interval="5000"/>
</file:inbound-channel-adapter>
<integration:service-activator input-channel="filesIn"

View File

@@ -14,7 +14,7 @@
<channel id="odd"/>
<inbound-channel-adapter id="numbers" ref="counter" method="next">
<poller period="3000" max-messages-per-poll="1"/>
<poller interval="3000" max-messages-per-poll="1"/>
</inbound-channel-adapter>
<router ref="parityResolver" method="getParity" input-channel="numbers"/>