All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.influxdb.client.service.PingService Maven / Gradle / Ivy

package com.influxdb.client.service;

import retrofit2.Call;
import retrofit2.http.*;

import okhttp3.RequestBody;
import okhttp3.ResponseBody;
import okhttp3.MultipartBody;


import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public interface PingService {
  /**
   * Checks the status of InfluxDB instance and version of InfluxDB.
   * 
   * @return Call<ResponseBody>
   */
  @GET("ping")
  Call getPing();
    

  /**
   * Checks the status of InfluxDB instance and version of InfluxDB.
   * 
   * @return Call<ResponseBody>
   */
  @HEAD("ping")
  Call headPing();
    

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy