-
Methods in org.gitlab4j.api that return types with arguments of type Job
Modifier and Type |
Method |
Description |
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(Long runnerId) |
List jobs that are being processed or were processed by specified Runner.
|
Pager<Job> |
RunnersApi.getJobs(Long runnerId,
int itemsPerPage) |
List jobs that are being processed or were processed by specified Runner.
|
List<Job> |
RunnersApi.getJobs(Long runnerId,
JobStatus status) |
List jobs that are being processed or were processed by specified Runner.
|
Pager<Job> |
RunnersApi.getJobs(Long runnerId,
JobStatus status,
int itemsPerPage) |
List jobs that are being processed or were processed by specified Runner.
|
List<Job> |
JobApi.getJobsForPipeline(Object projectIdOrPath,
long pipelineId) |
Get a list of jobs in a pipeline.
|
Pager<Job> |
JobApi.getJobsForPipeline(Object projectIdOrPath,
long pipelineId,
int itemsPerPage) |
Get a Pager of jobs in a pipeline.
|
List<Job> |
JobApi.getJobsForPipeline(Object projectIdOrPath,
long 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,
long pipelineId) |
Get a Stream of jobs in a pipeline.
|
Stream<Job> |
JobApi.getJobsStream(Object projectIdOrPath,
Constants.JobScope scope) |
Get a Stream of jobs in a project.
|
Stream<Job> |
RunnersApi.getJobsStream(Long runnerId) |
Get a Stream of jobs that are being processed or were processed by specified Runner.
|
Stream<Job> |
RunnersApi.getJobsStream(Long runnerId,
JobStatus status) |
Get a Stream of jobs that are being processed or were processed by specified Runner.
|
Optional<Job> |
JobApi.getOptionalJob(Object projectIdOrPath,
Long jobId) |
Get single job in a project as an Optional instance.
|
-
-
JobApi.cancelJob(Object, Long)