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: src/Elasticsearch.Net/ConnectionPool/IConnectionPool.cs
+5-2
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,12 @@ public interface IConnectionPool
13
13
intMaxRetries{get;}
14
14
15
15
/// <summary>
16
-
/// Get the next available Uri for a live node
16
+
/// Gets the next live Uri to perform the request on
17
17
/// </summary>
18
-
UriGetNext(int?initialSeed,outintseed);
18
+
/// <param name="initialSeed">pass the original seed when retrying, this guarantees that the nodes are walked in a predictable manner when multithreading</param>
19
+
/// <param name="seed">The seed this call started on</param>
0 commit comments