From b61de881c936fa98b1ef95052bf74f9b52370b30 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Sat, 23 Nov 2013 15:02:04 -0500 Subject: [PATCH] INT-2932 Tcp Event More Doc Polishing JIRA: https://jira.springsource.org/browse/INT-2932 Add source (the TcpConnetion) to the property list. --- src/reference/docbook/ip.xml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/reference/docbook/ip.xml b/src/reference/docbook/ip.xml index 1ec149e446..3656b87973 100644 --- a/src/reference/docbook/ip.xml +++ b/src/reference/docbook/ip.xml @@ -489,11 +489,15 @@ or TcpConnectionExceptionEvent). - TcpConnectionEvents contain: + TcpConnectionEvents have the following properties: - Connection Id (which can be used in a message header to send data to the connection) - Connection Factory Name (the bean name of the connection factory the connection belongs to) - The Throwable (for TcpConnectionExceptionEvent events only) + connectionId - the connection identifier which can be used in a message header + to send data to the connection + connectionFactoryName - the bean name of the connection factory the connection belongs to + throwable - the Throwable (for TcpConnectionExceptionEvent events only) + source - the TcpConnection; this can be + used, for example, to determine the remote IP Address with getHostAddress() (cast required) +