140 lines
3.6 KiB
Plaintext
140 lines
3.6 KiB
Plaintext
---
|
||
title: BaseJob
|
||
description: API reference for qiskit.providers.BaseJob
|
||
in_page_toc_min_heading_level: 1
|
||
python_api_type: class
|
||
python_api_name: qiskit.providers.BaseJob
|
||
---
|
||
|
||
# BaseJob
|
||
|
||
<Class id="qiskit.providers.BaseJob" isDedicatedPage={true} github="https://github.com/qiskit/qiskit/tree/stable/0.20/qiskit/providers/basejob.py" signature="BaseJob(backend, job_id)" modifiers="class">
|
||
Bases: `abc.ABC`
|
||
|
||
DEPRECATED Legacy Class to handle asynchronous jobs
|
||
|
||
Initializes the asynchronous job.
|
||
|
||
**Parameters**
|
||
|
||
* **backend** (`BaseBackend`) – the backend used to run the job.
|
||
* **job\_id** (`str`) – a unique id in the context of the backend used to run the job.
|
||
|
||
## Methods
|
||
|
||
### backend
|
||
|
||
<Function id="qiskit.providers.BaseJob.backend" signature="BaseJob.backend()">
|
||
Return the backend where this job was executed.
|
||
|
||
**Return type**
|
||
|
||
`BaseBackend`
|
||
</Function>
|
||
|
||
### cancel
|
||
|
||
<Function id="qiskit.providers.BaseJob.cancel" signature="BaseJob.cancel()" modifiers="abstract">
|
||
Attempt to cancel the job.
|
||
</Function>
|
||
|
||
### cancelled
|
||
|
||
<Function id="qiskit.providers.BaseJob.cancelled" signature="BaseJob.cancelled()">
|
||
Return whether the job has been cancelled.
|
||
|
||
**Return type**
|
||
|
||
`bool`
|
||
</Function>
|
||
|
||
### done
|
||
|
||
<Function id="qiskit.providers.BaseJob.done" signature="BaseJob.done()">
|
||
Return whether the job has successfully run.
|
||
|
||
**Return type**
|
||
|
||
`bool`
|
||
</Function>
|
||
|
||
### in\_final\_state
|
||
|
||
<Function id="qiskit.providers.BaseJob.in_final_state" signature="BaseJob.in_final_state()">
|
||
Return whether the job is in a final job state.
|
||
|
||
**Return type**
|
||
|
||
`bool`
|
||
</Function>
|
||
|
||
### job\_id
|
||
|
||
<Function id="qiskit.providers.BaseJob.job_id" signature="BaseJob.job_id()">
|
||
Return a unique id identifying the job.
|
||
|
||
**Return type**
|
||
|
||
`str`
|
||
</Function>
|
||
|
||
### result
|
||
|
||
<Function id="qiskit.providers.BaseJob.result" signature="BaseJob.result()" modifiers="abstract">
|
||
Return the results of the job.
|
||
</Function>
|
||
|
||
### running
|
||
|
||
<Function id="qiskit.providers.BaseJob.running" signature="BaseJob.running()">
|
||
Return whether the job is actively running.
|
||
|
||
**Return type**
|
||
|
||
`bool`
|
||
</Function>
|
||
|
||
### status
|
||
|
||
<Function id="qiskit.providers.BaseJob.status" signature="BaseJob.status()" modifiers="abstract">
|
||
Return the status of the job, among the values of `JobStatus`.
|
||
</Function>
|
||
|
||
### submit
|
||
|
||
<Function id="qiskit.providers.BaseJob.submit" signature="BaseJob.submit()" modifiers="abstract">
|
||
Submit the job to the backend for execution.
|
||
</Function>
|
||
|
||
### wait\_for\_final\_state
|
||
|
||
<Function id="qiskit.providers.BaseJob.wait_for_final_state" signature="BaseJob.wait_for_final_state(timeout=None, wait=5, callback=None)">
|
||
Poll the job status until it progresses to a final state such as `DONE` or `ERROR`.
|
||
|
||
**Parameters**
|
||
|
||
* **timeout** (`Optional`\[`float`]) – Seconds to wait for the job. If `None`, wait indefinitely.
|
||
|
||
* **wait** (`float`) – Seconds between queries.
|
||
|
||
* **callback** (`Optional`\[`Callable`]) –
|
||
|
||
Callback function invoked after each query. The following positional arguments are provided to the callback function:
|
||
|
||
* job\_id: Job ID
|
||
* job\_status: Status of the job from the last query
|
||
* job: This BaseJob instance
|
||
|
||
Note: different subclass might provide different arguments to the callback function.
|
||
|
||
**Raises**
|
||
|
||
[**JobTimeoutError**](qiskit.providers.JobTimeoutError "qiskit.providers.JobTimeoutError") – If the job does not reach a final state before the specified timeout.
|
||
|
||
**Return type**
|
||
|
||
`None`
|
||
</Function>
|
||
</Class>
|
||
|