Interface BenchResultApi


public interface BenchResultApi
  • Method Details

    • find

      @GET("/runtime/bench-results/{id}") retrofit2.Call<BenchResult> find(@Path("id") String id)
    • getProgress

      @GET("/runtime/bench-results/progress/{benchResultId}") retrofit2.Call<ValueWrapper<Double>> getProgress(@Path("benchResultId") String benchResultId)
    • stopTest

      @POST("/runtime/bench-results/stop/{benchResultId}") retrofit2.Call<Void> stopTest(@Path("benchResultId") String benchResultId)