@@ -8,7 +8,6 @@ namespace Nest
88{
99 public interface IElasticClient
1010 {
11-
1211 IConnection Connection { get ; }
1312 ElasticSerializer Serializer { get ; }
1413 IRawElasticClient Raw { get ; }
@@ -18,7 +17,6 @@ public interface IElasticClient
1817 string GetIndexNameFor < T > ( ) ;
1918 string GetIndexNameFor ( Type type ) ;
2019
21-
2220 IIndicesOperationResponse Alias ( AliasParams aliasParams ) ;
2321 IIndicesOperationResponse Alias ( IEnumerable < AliasParams > aliases ) ;
2422 IIndicesOperationResponse Alias ( IEnumerable < string > aliases ) ;
@@ -296,11 +294,9 @@ Task<IRegisterPercolateResponse> RegisterPercolatorAsync<T>(
296294 IIndicesOperationResponse RemoveAliases ( IEnumerable < AliasParams > aliases ) ;
297295 IIndicesOperationResponse Rename ( string index , string oldAlias , string newAlias ) ;
298296
299-
300297 IQueryResponse < dynamic > Scroll ( string scrollTime , string scrollId ) ;
301298 IQueryResponse < T > Scroll < T > ( string scrollTime , string scrollId ) where T : class ;
302299
303-
304300 IQueryResponse < dynamic > Search ( Func < SearchDescriptor < dynamic > , SearchDescriptor < dynamic > > searcher ) ;
305301 IQueryResponse < T > Search < T > ( SearchDescriptor < T > descriptor ) where T : class ;
306302 IQueryResponse < T > Search < T > ( Func < SearchDescriptor < T > , SearchDescriptor < T > > searcher ) where T : class ;
@@ -337,8 +333,9 @@ IUpdateResponse Update<T, K>(Action<UpdateDescriptor<T, K>> updateSelector)
337333
338334 IValidateResponse Validate < T > ( Action < ValidateQueryPathDescriptor < T > > querySelector ) where T : class ;
339335
340- IRootInfoResponse GetRootNodeInfo ( ) ;
341- Task < IRootInfoResponse > GetRootNodeInfoAsync ( ) ;
336+ IRootInfoResponse RootNodeInfo ( ) ;
337+
338+ Task < IRootInfoResponse > RootNodeInfoAsync ( ) ;
342339
343340 }
344341}
0 commit comments