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
* Here instead of directly passing `node`, we pass a `SniffingConnectionPool` which will use our `node` to find out the rest of the available cluster nodes.
59
59
* Be sure to read more about [Connection Pooling and Cluster Failover here](/elasticsearch-net/cluster-failover.html)
@@ -98,10 +98,10 @@ public void AvailableOptions()
98
98
*/
99
99
100
100
.DisableDirectStreaming()
101
-
/**
102
-
* By default responses are deserialized off stream to the object you tell it to.
103
-
* For debugging purposes it can be very useful to keep a copy of the raw response on the result object.
104
-
*/;
101
+
/**
102
+
* By default responses are deserialized off stream to the object you tell it to.
103
+
* For debugging purposes it can be very useful to keep a copy of the raw response on the result object.
@@ -116,12 +116,6 @@ public void AvailableOptions()
116
116
//hide
117
117
config=config
118
118
//endhide
119
-
.ConnectionStatusHandler(s =>{})
120
-
/**
121
-
* Allows you to pass a `Action<IElasticsearchResponse>` that can eaves drop every time a response (good or bad) is created. If you have complex logging needs
* Allows you to set querystring parameters that have to be added to every request. For instance, if you use a hosted elasticserch provider, and you need need to pass an `apiKey` parameter onto every request.
@@ -179,6 +173,23 @@ public void AvailableOptions()
179
173
*/
180
174
}
181
175
176
+
/**
177
+
* You can pass a callback of type `Action<IApiCallDetails>` that can eaves drop every time a response (good or bad) is created.
178
+
* If you have complex logging needs this is a good place to add that in.
0 commit comments