public interface Jobs
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<JobsV3> |
cancel(java.lang.String job_id,
java.lang.String _exclude_fields)
Cancel a running job.
|
retrofit2.Call<JobsV3> |
fetch(java.lang.String job_id)
Get the status of the given H2O Job (long-running action).
|
retrofit2.Call<JobsV3> |
list()
Get a list of all the H2O Jobs (long-running actions).
|
@GET(value="/3/Jobs") retrofit2.Call<JobsV3> list()
@GET(value="/3/Jobs/{job_id}")
retrofit2.Call<JobsV3> fetch(@Path(value="job_id")
java.lang.String job_id)
@FormUrlEncoded
@POST(value="/3/Jobs/{job_id}/cancel")
retrofit2.Call<JobsV3> cancel(@Path(value="job_id")
java.lang.String job_id,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)