qiskit.providers.ibmq.runtime.IBMRuntimeService.jobs¶
-
IBMRuntimeService.
jobs
(limit=10, skip=0, pending=None)[source]¶ Retrieve all runtime jobs, subject to optional filtering.
- Parameters
limit (
int
) – Number of jobs to retrieve.skip (
int
) – Starting index for the job retrieval.pending (
Optional
[bool
]) – Filter by job pending state. IfTrue
, ‘QUEUED’ and ‘RUNNING’ jobs are included. IfFalse
, ‘DONE’, ‘CANCELLED’ and ‘ERROR’ jobs are included.
- Return type
List
[RuntimeJob
]- Returns
A list of runtime jobs.