diff --git a/spring-integration-reference/src/aggregator-resequencer.xml b/spring-integration-reference/src/aggregator-resequencer.xml index aaeca0363e..394157d706 100644 --- a/spring-integration-reference/src/aggregator-resequencer.xml +++ b/spring-integration-reference/src/aggregator-resequencer.xml @@ -164,57 +164,57 @@ it: <aggregator id="completelyDefinedAggregator" - input-channel="completelyDefinedAggregatorInput" - output-channel="outputChannel" - discard-channel="discardChannel" - ref="aggregatorBean" - method="add" - completion-strategy="completionStrategy" - completion-strategy-method="checkCompleteness" - timeout="42" - send-partial-result-on-timeout="true" - reaper-interval="135" - tracked-correlation-id-capacity="99" - send-timeout="86420000" /> + id="aggxml1" /> + input-channel="completelyDefinedAggregatorInput" + output-channel="outputChannel" + discard-channel="discardChannel" + ref="aggregatorBean" + method="add" + completion-strategy="completionStrategy" + completion-strategy-method="checkCompleteness" + timeout="42" + send-partial-result-on-timeout="true" + reaper-interval="135" + tracked-correlation-id-capacity="99" + send-timeout="86420000" /> - + The id of the aggregator is optional. - + The input channel of the aggregator. Required. - + The channel where the aggregator will send the aggregation results. Required. - + The channel where the aggregator will send the messages that timed out (if send-partial-results-on-timeout is true. Optional. - + A reference to a bean defined in the application context. The bean must either extend AbstractMessageAggregator or be a POJO. In the latter case the method attribute must be defined as well. Required. - + A method defined on the bean referenced by ref, that implements the message aggregation algorithm. Optional, with restrictions (see above). - + A reference to a bean that implements the decision algorithm as to whether a given message group is complete. The bean can be an implementation of the CompletionStrategy interface or a POJO. In the @@ -222,38 +222,38 @@ defined as well. Optional. - + A method defined on the bean referenced by completion-strategy, that implements the completion decision algorithm. Optional, with restrictions (see above). Optional. - + The timeout for aggregating messages (counted from the arrival of the first message). Optional. - + Whether upon the expiration of the timeout, the aggregator shall try to aggregate the already arrived messages. Optional (false by default). - + The interval (in milliseconds) at which a reaper task is executed, checking if there are any timed out groups. Optional. - + The capacity of the correlation id tracker. Remembers the already processed correlation ids, preventing the formation of new groups for messages that arrive after their group has been already processed (aggregated or discarded). Optional. - + The timeout for sending out messages. Optional.