diff --git a/spring-integration-reference/src/channel-adapter.xml b/spring-integration-reference/src/channel-adapter.xml
index 048158c483..110e3c8359 100644
--- a/spring-integration-reference/src/channel-adapter.xml
+++ b/spring-integration-reference/src/channel-adapter.xml
@@ -6,9 +6,9 @@
A Channel Adapter is a Message Endpoint that enables connecting a single sender or receiver to a Message Channel.
Spring Integration provides a number of adapters out of the box to support various transports, such as JMS, File,
- etc. Those will be discussed in upcoming chapters of this reference guide. However, this chapter focuses on the
- simple but flexible Method-invoking Channel Adapter support. There is an inbound and outbound adapter, and each
- may be configured with XML elements provided in the core namespace.
+ HTTP, Web Services, and Mail. Those will be discussed in upcoming chapters of this reference guide. However, this
+ chapter focuses on the simple but flexible Method-invoking Channel Adapter support. There are both inbound and
+ outbound adapters, and each may be configured with XML elements provided in the core namespace.
@@ -18,9 +18,9 @@
value to a MessageChannel after converting it to a Message.
When the adapter's subscription is activated, a poller will attempt to receive messages from the source. The
poller will be scheduled with the TaskScheduler according to the provided
- configuration. To configure the polling 'interval' or 'cronExpression' for an individual channel-adapter's
- schedule, provide a 'poller' element with either an 'interval-trigger' (in milliseconds) or 'cron-trigger'
- sub-element:
+ configuration. To configure the polling interval or cron expression for an individual channel-adapter,
+ provide a 'poller' element with either an 'interval-trigger' (in milliseconds) or 'cron-trigger'
+ sub-element.
@@ -29,17 +29,23 @@
-
+
]]>
+
+
+ If no poller is provided, then a single default poller must be registered within the context.
+ See for more detail.
+
+
The <outbound-channel-adapter/> element
An "outbound-channel-adapter" element can also connect a MessageChannel to any
- method that should be invoked with the payload of any Message sent to that channel.
+ method that should be invoked with the payload of Messages sent to that channel.
]]>
If the channel being adapted is a PollableChannel, provide a poller sub-element: