/// <inheritdoc />
		public Task<IStatusResponse> StatusAsync(IIndicesStatusRequest statusRequest)
		{
			return this.DispatchAsync<IIndicesStatusRequest, IndicesStatusRequestParameters, StatusResponse, IStatusResponse>(
				statusRequest,
				(p, d) => this.RawDispatch.IndicesStatusDispatchAsync<StatusResponse>(p)
			);
		}
		/// <inheritdoc />
		public IStatusResponse Status(IIndicesStatusRequest statusRequest)
		{
			return this.Dispatch<IIndicesStatusRequest, IndicesStatusRequestParameters, StatusResponse>(
				statusRequest,
				(p, d) => this.RawDispatch.IndicesStatusDispatch<StatusResponse>(p)
			);
		}
Esempio n. 3
0
 /// <inheritdoc />
 public IStatusResponse Status(IIndicesStatusRequest statusRequest)
 {
     return(this.Dispatch <IIndicesStatusRequest, IndicesStatusRequestParameters, StatusResponse>(
                statusRequest,
                (p, d) => this.RawDispatch.IndicesStatusDispatch <StatusResponse>(p)
                ));
 }
Esempio n. 4
0
 /// <inheritdoc />
 public Task <IStatusResponse> StatusAsync(IIndicesStatusRequest statusRequest)
 {
     return(this.DispatchAsync <IIndicesStatusRequest, IndicesStatusRequestParameters, StatusResponse, IStatusResponse>(
                statusRequest,
                (p, d) => this.RawDispatch.IndicesStatusDispatchAsync <StatusResponse>(p)
                ));
 }
 public static void Update(ElasticsearchPathInfo <IndicesStatusRequestParameters> pathInfo, IIndicesStatusRequest request)
 {
     pathInfo.HttpMethod = PathInfoHttpMethod.GET;
 }