Final doc updates for 1.0-M1

This commit is contained in:
Mark Fisher
2008-01-23 16:40:58 +00:00
parent cb9980332a
commit 00205323d4
4 changed files with 589 additions and 2 deletions

View File

@@ -306,8 +306,9 @@ List<LineItem> extractItems(Order order) {
}</programlisting>
</para>
<para>
The <interfacename>@Publisher</interfacename> annotation is a convenience for sending messages with AOP after
advice. For example, each time the following method is invoked, its return will be sent to the "fooChannel":
The <interfacename>@Publisher</interfacename> annotation is a convenience for sending messages with AOP
<emphasis>after-returning advice</emphasis>. For example, each time the following method is invoked, its return
value will be sent to the "fooChannel":
<programlisting><![CDATA[@Publisher(channel="fooChannel")
public String foo() {
return "bar";