List<Job> |
JobApi.getJobs(Object projectIdOrPath) |
Get a list of jobs in a project.
|
Pager<Job> |
JobApi.getJobs(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of jobs in a project.
|
List<Job> |
JobApi.getJobs(Object projectIdOrPath,
int page,
int perPage) |
Get a list of jobs in a project in the specified page range.
|
List<Job> |
JobApi.getJobs(Object projectIdOrPath,
Constants.JobScope scope) |
Get a list of jobs in a project.
|
Pager<Job> |
JobApi.getJobs(Object projectIdOrPath,
Constants.JobScope scope,
int itemsPerPage) |
Get a list of jobs in a project.
|
List<Job> |
RunnersApi.getJobs(Integer runnerId) |
List jobs that are being processed or were processed by specified Runner.
|
Pager<Job> |
RunnersApi.getJobs(Integer runnerId,
int itemsPerPage) |
List jobs that are being processed or were processed by specified Runner.
|
List<Job> |
RunnersApi.getJobs(Integer runnerId,
JobStatus status) |
List jobs that are being processed or were processed by specified Runner.
|
Pager<Job> |
RunnersApi.getJobs(Integer runnerId,
JobStatus status,
int itemsPerPage) |
List jobs that are being processed or were processed by specified Runner.
|
List<Job> |
JobApi.getJobsForPipeline(Object projectIdOrPath,
int pipelineId) |
Get a list of jobs in a pipeline.
|
List<Job> |
JobApi.getJobsForPipeline(Object projectIdOrPath,
int pipelineId,
Constants.JobScope scope) |
Get a list of jobs in a pipeline.
|
Stream<Job> |
JobApi.getJobsStream(Object projectIdOrPath) |
Get a Stream of jobs in a project.
|
Stream<Job> |
JobApi.getJobsStream(Object projectIdOrPath,
Constants.JobScope scope) |
Get a Stream of jobs in a project.
|
Stream<Job> |
RunnersApi.getJobsStream(Integer runnerId) |
Get a Stream of jobs that are being processed or were processed by specified Runner.
|
Stream<Job> |
RunnersApi.getJobsStream(Integer runnerId,
JobStatus status) |
Get a Stream of jobs that are being processed or were processed by specified Runner.
|
Optional<Job> |
JobApi.getOptionalJob(Object projectIdOrPath,
int jobId) |
Get single job in a project as an Optional instance.
|