Exemplo n.º 1
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatSnapshotsRecord> > CatSnapshotsAsync(ICatSnapshotsRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
 this.DoCatAsync <ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, cancellationToken, this.LowLevelDispatch.CatSnapshotsDispatchAsync <CatResponse <CatSnapshotsRecord> >);
		/// <inheritdoc/>
		public Task<ICatResponse<CatSnapshotsRecord>> CatSnapshotsAsync(ICatSnapshotsRequest request) =>
			this.DoCatAsync<ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, this.LowLevelDispatch.CatSnapshotsDispatchAsync<CatResponse<CatSnapshotsRecord>>);
Exemplo n.º 3
0
 /// <inheritdoc/>
 public ICatResponse <CatSnapshotsRecord> CatSnapshots(ICatSnapshotsRequest request) =>
 this.DoCat <ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, this.LowLevelDispatch.CatSnapshotsDispatch <CatResponse <CatSnapshotsRecord> >);
Exemplo n.º 4
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatSnapshotsRecord> > CatSnapshotsAsync(ICatSnapshotsRequest request) =>
 this.DoCatAsync <ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, this.LowLevelDispatch.CatSnapshotsDispatchAsync <CatResponse <CatSnapshotsRecord> >);
		/// <inheritdoc/>
		public ICatResponse<CatSnapshotsRecord> CatSnapshots(ICatSnapshotsRequest request) =>
			this.DoCat<ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, this.LowLevelDispatch.CatSnapshotsDispatch<CatResponse<CatSnapshotsRecord>>);
		/// <inheritdoc/>
		public Task<ICatResponse<CatSnapshotsRecord>> CatSnapshotsAsync(ICatSnapshotsRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
			this.DoCatAsync<ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, cancellationToken, this.LowLevelDispatch.CatSnapshotsDispatchAsync<CatResponse<CatSnapshotsRecord>>);
 public static Task <CatResponse <CatSnapshotsRecord> > CatSnapshotsAsync(this IElasticClient client, ICatSnapshotsRequest request,
                                                                          CancellationToken ct = default
                                                                          )
 => client.Cat.SnapshotsAsync(request, ct);
 public static CatResponse <CatSnapshotsRecord> CatSnapshots(this IElasticClient client, ICatSnapshotsRequest request)
 => client.Cat.Snapshots(request);
 /// <inheritdoc />
 public Task <CatResponse <CatSnapshotsRecord> > CatSnapshotsAsync(ICatSnapshotsRequest request, CancellationToken ct = default) =>
 DoCatAsync <ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request, ct);
 /// <inheritdoc />
 public CatResponse <CatSnapshotsRecord> CatSnapshots(ICatSnapshotsRequest request) =>
 DoCat <ICatSnapshotsRequest, CatSnapshotsRequestParameters, CatSnapshotsRecord>(request);