/// <inheritdoc />
 public Task <CatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request, CancellationToken ct = default) =>
 DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, ct);
		/// <inheritdoc/>
		public Task<ICatResponse<CatMasterRecord>> CatMasterAsync(ICatMasterRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
			this.DoCatAsync<ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, cancellationToken, this.LowLevelDispatch.CatMasterDispatchAsync<CatResponse<CatMasterRecord>>);
 /// <inheritdoc />
 public CatResponse <CatMasterRecord> CatMaster(ICatMasterRequest request) =>
 DoCat <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request);
Esempio n. 4
0
 public static Task <CatResponse <CatMasterRecord> > CatMasterAsync(this IElasticClient client, ICatMasterRequest request,
                                                                    CancellationToken ct = default
                                                                    )
 => client.Cat.MasterAsync(request, ct);
		/// <inheritdoc/>
		public ICatResponse<CatMasterRecord> CatMaster(ICatMasterRequest request) =>
			this.DoCat<ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatch<CatResponse<CatMasterRecord>>);
Esempio n. 6
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
 this.DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, cancellationToken, this.LowLevelDispatch.CatMasterDispatchAsync <CatResponse <CatMasterRecord> >);
Esempio n. 7
0
 public static CatResponse <CatMasterRecord> CatMaster(this IElasticClient client, ICatMasterRequest request)
 => client.Cat.Master(request);
Esempio n. 8
0
 /// <inheritdoc/>
 public ICatResponse <CatMasterRecord> CatMaster(ICatMasterRequest request) =>
 this.DoCat <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatch <CatResponse <CatMasterRecord> >);
Esempio n. 9
0
 public Task <ICatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request)
 {
     return(this.DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.RawDispatch.CatMasterDispatchAsync <CatResponse <CatMasterRecord> >));
 }
Esempio n. 10
0
 public ICatResponse <CatMasterRecord> CatMaster(ICatMasterRequest request)
 {
     return(this.DoCat <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.RawDispatch.CatMasterDispatch <CatResponse <CatMasterRecord> >));
 }
Esempio n. 11
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request) =>
 this.DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatchAsync <CatResponse <CatMasterRecord> >);
		/// <inheritdoc/>
		public Task<ICatResponse<CatMasterRecord>> CatMasterAsync(ICatMasterRequest request) =>
			this.DoCatAsync<ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatchAsync<CatResponse<CatMasterRecord>>);