File tree 1 file changed +4
-4
lines changed
client/src/main/java/org/asynchttpclient/handler
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,14 +58,14 @@ public interface AsyncHandlerExtensions {
58
58
*
59
59
* Might be called several times if the name was resolved to multiple addresses and we failed to connect to the first(s) one(s).
60
60
*
61
- * @param address the address we try to connect to
61
+ * @param remoteAddress the address we try to connect to
62
62
*/
63
- void onTcpConnect (InetSocketAddress address );
63
+ void onTcpConnect (InetSocketAddress remoteAddress );
64
64
65
65
/**
66
66
* Notify the callback after a successful connect
67
67
*
68
- * @param address the address we try to connect to
68
+ * @param remoteAddress the address we try to connect to
69
69
* @param connection the connection
70
70
*/
71
71
void onTcpConnectSuccess (InetSocketAddress remoteAddress , Channel connection );
@@ -75,7 +75,7 @@ public interface AsyncHandlerExtensions {
75
75
*
76
76
* Might be called several times, or be followed by onTcpConnectSuccess when the name was resolved to multiple addresses.
77
77
*
78
- * @param address the address we try to connect to
78
+ * @param remoteAddress the address we try to connect to
79
79
* @param cause the cause of the failure
80
80
*/
81
81
void onTcpConnectFailure (InetSocketAddress remoteAddress , Throwable cause );
You can’t perform that action at this time.
0 commit comments