コード例 #1
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatNodeAttributesRecord> > CatNodeAttributesAsync(ICatNodeAttributesRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
 this.DoCatAsync <ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, cancellationToken, this.LowLevelDispatch.CatNodeattrsDispatchAsync <CatResponse <CatNodeAttributesRecord> >);
コード例 #2
0
 /// <inheritdoc />
 public Task <CatResponse <CatNodeAttributesRecord> > CatNodeAttributesAsync(
     ICatNodeAttributesRequest request,
     CancellationToken ct = default
     ) => DoCatAsync <ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, ct);
コード例 #3
0
 /// <inheritdoc/>
 public ICatResponse <CatNodeAttributesRecord> CatNodeAttributes(ICatNodeAttributesRequest request) =>
 this.DoCat <ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, this.LowLevelDispatch.CatNodeattrsDispatch <CatResponse <CatNodeAttributesRecord> >);
コード例 #4
0
		/// <inheritdoc/>
		public Task<ICatResponse<CatNodeAttributesRecord>> CatNodeAttributesAsync(ICatNodeAttributesRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
			this.DoCatAsync<ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, cancellationToken, this.LowLevelDispatch.CatNodeattrsDispatchAsync<CatResponse<CatNodeAttributesRecord>>);
コード例 #5
0
 /// <inheritdoc />
 public CatResponse <CatNodeAttributesRecord> CatNodeAttributes(ICatNodeAttributesRequest request) =>
 DoCat <ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request);
コード例 #6
0
		/// <inheritdoc/>
		public ICatResponse<CatNodeAttributesRecord> CatNodeAttributes(ICatNodeAttributesRequest request) =>
			this.DoCat<ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, this.LowLevelDispatch.CatNodeattrsDispatch<CatResponse<CatNodeAttributesRecord>>);
コード例 #7
0
		/// <inheritdoc/>
		public Task<ICatResponse<CatNodeAttributesRecord>> CatNodeAttributesAsync(ICatNodeAttributesRequest request) =>
			this.DoCatAsync<ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, this.LowLevelDispatch.CatNodeattrsDispatchAsync<CatResponse<CatNodeAttributesRecord>>);
コード例 #8
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatNodeAttributesRecord> > CatNodeAttributesAsync(ICatNodeAttributesRequest request) =>
 this.DoCatAsync <ICatNodeAttributesRequest, CatNodeAttributesRequestParameters, CatNodeAttributesRecord>(request, this.LowLevelDispatch.CatNodeattrsDispatchAsync <CatResponse <CatNodeAttributesRecord> >);
コード例 #9
0
 public static Task <CatResponse <CatNodeAttributesRecord> > CatNodeAttributesAsync(this IElasticClient client, ICatNodeAttributesRequest request,
                                                                                    CancellationToken ct = default
                                                                                    )
 => client.Cat.NodeAttributesAsync(request, ct);
コード例 #10
0
 public static CatResponse <CatNodeAttributesRecord> CatNodeAttributes(this IElasticClient client, ICatNodeAttributesRequest request)
 => client.Cat.NodeAttributes(request);