You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/connection/TcpConnectionInterceptorSupport.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,15 @@ public void registerSender(TcpSender sender) {
96
96
this.theConnection.registerSender(this);
97
97
}
98
98
99
+
/**
100
+
* {@inheritDoc}
101
+
* <p>
102
+
* IMPORTANT: Do not override this method in your interceptor implementation if the
103
+
* intercepted connection is created by a server connection factory, because the
104
+
* connection id of the underlying connection is used for routing when arbitrary
105
+
* outbound messaging is being used. The method is not final because client-side
106
+
* interceptors can override it without any issues.
0 commit comments