@@ -53,21 +53,21 @@ public ElasticsearchClientSettings(InMemoryConnection connection)
5353 {
5454 }
5555
56- public ElasticsearchClientSettings ( INodePool nodePool ) : this ( nodePool , null , null ) { }
56+ public ElasticsearchClientSettings ( NodePool nodePool ) : this ( nodePool , null , null ) { }
5757
58- public ElasticsearchClientSettings ( INodePool nodePool , SourceSerializerFactory sourceSerializer )
58+ public ElasticsearchClientSettings ( NodePool nodePool , SourceSerializerFactory sourceSerializer )
5959 : this ( nodePool , null , sourceSerializer ) { }
6060
61- public ElasticsearchClientSettings ( INodePool nodePool , ITransportClient connection ) : this ( nodePool , connection , null ) { }
61+ public ElasticsearchClientSettings ( NodePool nodePool , ITransportClient connection ) : this ( nodePool , connection , null ) { }
6262
63- public ElasticsearchClientSettings ( INodePool nodePool , ITransportClient connection , SourceSerializerFactory sourceSerializer ) : this (
63+ public ElasticsearchClientSettings ( NodePool nodePool , ITransportClient connection , SourceSerializerFactory sourceSerializer ) : this (
6464 nodePool ,
6565 connection , sourceSerializer , null )
6666 {
6767 }
6868
6969 public ElasticsearchClientSettings (
70- INodePool nodePool ,
70+ NodePool nodePool ,
7171 ITransportClient connection ,
7272 SourceSerializerFactory sourceSerializer ,
7373 IPropertyMappingProvider propertyMappingProvider ) : base ( nodePool , connection , sourceSerializer , propertyMappingProvider )
@@ -102,7 +102,7 @@ public abstract class
102102 private string _defaultIndex ;
103103
104104 protected ElasticsearchClientSettingsBase (
105- INodePool nodePool ,
105+ NodePool nodePool ,
106106 ITransportClient connection ,
107107 ElasticsearchClientSettings . SourceSerializerFactory ? sourceSerializerFactory ,
108108 IPropertyMappingProvider propertyMappingProvider )
@@ -372,19 +372,19 @@ public ConnectionConfiguration(string cloudId, IAuthenticationHeader credentials
372372 {
373373 }
374374
375- public ConnectionConfiguration ( INodePool nodePool ) : this ( nodePool , null , null ) { }
375+ public ConnectionConfiguration ( NodePool nodePool ) : this ( nodePool , null , null ) { }
376376
377- public ConnectionConfiguration ( INodePool nodePool , ITransportClient connection ) : this ( nodePool ,
377+ public ConnectionConfiguration ( NodePool nodePool , ITransportClient connection ) : this ( nodePool ,
378378 connection , null )
379379 {
380380 }
381381
382- public ConnectionConfiguration ( INodePool nodePool , Serializer serializer ) : this (
382+ public ConnectionConfiguration ( NodePool nodePool , Serializer serializer ) : this (
383383 nodePool , null , serializer )
384384 {
385385 }
386386
387- public ConnectionConfiguration ( INodePool nodePool , ITransportClient connection ,
387+ public ConnectionConfiguration ( NodePool nodePool , ITransportClient connection ,
388388 Serializer serializer )
389389 : base ( nodePool , connection , serializer )
390390 {
@@ -402,7 +402,7 @@ public abstract class
402402 {
403403 private bool _includeServerStackTraceOnError ;
404404
405- protected ConnectionConfigurationBase ( INodePool nodePool , ITransportClient connection ,
405+ protected ConnectionConfigurationBase ( NodePool nodePool , ITransportClient connection ,
406406 Serializer ? serializer ,
407407 IProductRegistration registration = null )
408408 : base ( nodePool , connection , serializer , registration ?? new ElasticsearchProductRegistration ( typeof ( IElasticClient ) ) ) =>
0 commit comments