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
Fixesspring-projects#8609
* add getLastWrapper() in TcpConnectionSupport
* change to passed the instance that geted via getLastWrapper() instead of self instance to TcpSender#addNewConnection
Copy file name to clipboardExpand all lines: spring-integration-ip/src/main/java/org/springframework/integration/ip/tcp/connection/TcpConnectionSupport.java
+17-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2001-2022 the original author or authors.
2
+
* Copyright 2001-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -22,6 +22,7 @@
22
22
importjava.util.Collections;
23
23
importjava.util.List;
24
24
importjava.util.Map;
25
+
importjava.util.Optional;
25
26
importjava.util.UUID;
26
27
importjava.util.concurrent.CountDownLatch;
27
28
importjava.util.concurrent.TimeUnit;
@@ -48,6 +49,7 @@
48
49
*
49
50
* @author Gary Russell
50
51
* @author Artem Bilan
52
+
* @author Kazuki Shimizu
51
53
*
52
54
* @since 2.0
53
55
*
@@ -313,7 +315,7 @@ public void enableManualListenerRegistration() {
0 commit comments