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: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,8 +78,11 @@ You do not need to download and build the source to use the SDK but if you want
78
78
79
79
Note: This number cannot be greater than Maximum Total Connections and every connection created here also counts into Maximum Total Connections.
80
80
-`connectionRequestTimeoutMs` Time taken in milliseconds to get connection request from the pool. If it times out, it will throw error as Timeout waiting for connection from pool
81
-
-`connectionTimeoutMs` Specifies the number of milliseconds to wait while a connection is being established.
82
-
-`socketTimeoutMs` Specifies the time waiting for data – after establishing the connection; maximum time of inactivity between two data packets.
81
+
-`connectionTimeoutMs` Specifies the number of milliseconds to wait while a connection is being established. With 6.2.11 release onwards, this property can be used for basic
82
+
apache http client and JDK provided HttpUrlConnection implementation as well while keeping the backward compatibility with 'timeout' property.
83
+
-`socketTimeoutMs` Specifies the time waiting for data – after establishing the connection; maximum time of inactivity between two data packets.
84
+
With 6.2.11 release onwards, this property can be used for basic apache http client and JDK provided HttpUrlConnection implementation as well while keeping the
85
+
backward compatibility with 'timeout' property.
83
86
-`evictThreadSleepTimeMs` Specifies time duration in milliseconds between "sweeps" by the "idle connection" evictor thread.
84
87
This thread will check if any idle/expired/stale connections are available in pool and evict it.
85
88
-`maxKeepAliveTimeMs` Specifies the time duration in milliseconds that a connection can be idle before it is evicted from the pool.
@@ -247,7 +250,7 @@ Retry Pattern allows to retry sending a failed request and it will only work wit
Copy file name to clipboardExpand all lines: zip/README
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -89,8 +89,10 @@ Refer to our Developer's Guide for details <http://apps.cybersource.com/library/
89
89
In SDK, all above config does same functionality and the same value can be given to these configs as we have only one route.
90
90
Note: This number cannot be greater than Maximum Total Connections and every connection created here also counts into Maximum Total Connections.
91
91
- 'connectionRequestTimeoutMs' Time taken in milliseconds to get connection request from the pool. If it times out, it will throw error as Timeout waiting for connection from pool
92
-
- 'connectionTimeoutMs' Specifies the number of milliseconds to wait while a connection is being established.
93
-
- 'socketTimeoutMs` Specifies the time waiting for data – after establishing the connection; maximum time of inactivity between two data packets.
92
+
- 'connectionTimeoutMs' Specifies the number of milliseconds to wait while a connection is being established. With 6.2.11 release onwards, this property can be used for basic
93
+
apache http client and JDK provided HttpUrlConnection implementation as well while keeping the backward compatibility with 'timeout' property.
94
+
- 'socketTimeoutMs` Specifies the time waiting for data – after establishing the connection; maximum time of inactivity between two data packets. With 6.2.11 release onward,
95
+
this property can be used for basic apache http client and JDK provided HttpUrlConnection implementation as well while keeping the backward compatibility with 'timeout' property.
94
96
- 'evictThreadSleepTimeMs' Specifies time duration in milliseconds between "sweeps" by the "idle connection" evictor thread.
95
97
This thread will check if any idle/expired/stale connections are available in pool and evict it.
96
98
- 'maxKeepAliveTimeMs' Specifies the time duration in milliseconds that a connection can be idle before it is evicted from the pool.
@@ -275,7 +277,7 @@ Provides low level HTTP transport components that can be used to build custom cl
0 commit comments