diff --git a/spring-integration-reference/src/event.xml b/spring-integration-reference/src/event.xml index 9f2fff9756..c6048ba2e7 100644 --- a/spring-integration-reference/src/event.xml +++ b/spring-integration-reference/src/event.xml @@ -1,20 +1,35 @@ + Spring ApplicationEvent Support + - Spring Integration also provides support for inbound and outbound ApplicationEvents. - To receive events and send to a channel, simply define an instance of Spring Integration's - ApplicationEventListeningChannelAdapter. This class is an implementation of Spring's - ApplicationListener interface. By default it will pass all received events as - Spring Integration Messages. To limit based on the type of event, configure the list of event types that you want - to receive with the 'eventTypes' property. - - - To send Spring ApplicationEvents, create an instance of the - ApplicationEventPublishingMessageHandler and register it within an endpoint. This - implementation of the MessageHandler interface also implements Spring's - ApplicationEventPublisherAware interface and thus acts as a bridge between - Spring Integration Messages and ApplicationEvents. + Spring Integration provides support for inbound and outbound ApplicationEvents + as defined by the underlying Spring Framework. For more information about the events and listeners, + refer to the Spring Reference Manual. + +
+ Receiving Spring ApplicationEvents + + To receive events and send them to a channel, simply define an instance of Spring Integration's + ApplicationEventListeningChannelAdapter. This class is an implementation of + Spring's ApplicationListener interface. By default it will pass all + received events as Spring Integration Messages. To limit based on the type of event, configure the + list of event types that you want to receive with the 'eventTypes' property. + +
+ +
+ Sending Spring ApplicationEvents + + To send Spring ApplicationEvents, create an instance of the + ApplicationEventPublishingMessageHandler and register it within an endpoint. + This implementation of the MessageHandler interface also implements + Spring's ApplicationEventPublisherAware interface and thus acts as a + bridge between Spring Integration Messages and ApplicationEvents. + +
+
\ No newline at end of file