Merge branch 'master' of git.springsource.org:spring-integration/spring-integration
This commit is contained in:
@@ -34,7 +34,8 @@
|
||||
In the above example, all Application Context events that match one of the types specified by the 'event-types' (optional) attribute will be
|
||||
delivered as Spring Integration Messages to the Message Channel named 'eventChannel'. If a downstream component throws
|
||||
an exception, a MessagingException containing the failed message and exception will be sent to the channel named
|
||||
'eventErrorChannel'. If no "error-channel" is specified, the exception will be propagated to the caller.
|
||||
'eventErrorChannel'. If no "error-channel" is specified and the downstream channels are synchronous, the Exception
|
||||
will be propagated to the caller.
|
||||
</para>
|
||||
</section>
|
||||
|
||||
|
||||
@@ -808,7 +808,7 @@
|
||||
<row>
|
||||
<entry>error-channel</entry>
|
||||
<entry></entry>
|
||||
<entry>If a synchronous Exception is thrown by a downstream
|
||||
<entry>If an Exception is thrown by a downstream
|
||||
component, the MessagingException message containing the exception
|
||||
and failed message is sent to this channel.</entry>
|
||||
</row>
|
||||
@@ -964,7 +964,7 @@
|
||||
<row>
|
||||
<entry>error-channel</entry>
|
||||
<entry></entry>
|
||||
<entry>If a synchronous Exception is thrown by a downstream
|
||||
<entry>If an Exception is thrown by a downstream
|
||||
component, the MessagingException message containing the exception
|
||||
and failed message is sent to this channel.</entry>
|
||||
</row>
|
||||
@@ -1043,7 +1043,7 @@
|
||||
<row>
|
||||
<entry>error-channel</entry>
|
||||
<entry></entry>
|
||||
<entry>If a synchronous Exception is thrown by a downstream
|
||||
<entry>If an Exception is thrown by a downstream
|
||||
component, the MessagingException message containing the exception
|
||||
and failed message is sent to this channel;
|
||||
any reply from that flow will then be returned as a response by
|
||||
|
||||
@@ -158,9 +158,10 @@
|
||||
</para>
|
||||
<para>
|
||||
Finally, the <imap-idle-channel-adapter/> also accepts the 'error-channel' attribute.
|
||||
If a synchronous downstream exception is thrown and an 'error-channel' is specified,
|
||||
the MessagingException containing the failed message and exception, will be sent to this channel.
|
||||
Otherwise, any such exception will simply be logged as a warning by the channel adapter.
|
||||
If a downstream exception is thrown and an 'error-channel' is specified,
|
||||
a MessagingException message containing the failed message and exception, will be sent to this channel.
|
||||
Otherwise, if the downstream channels are synchronous, any such exception will simply be logged as a
|
||||
warning by the channel adapter.
|
||||
</para>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user