qiskit-documentation/docs/api/qiskit/0.35/qiskit.providers.ibmq.runti...

41 lines
1.6 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: UserMessenger
description: API reference for qiskit.providers.ibmq.runtime.UserMessenger
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.providers.ibmq.runtime.UserMessenger
---
# UserMessenger
<Class id="qiskit.providers.ibmq.runtime.UserMessenger" isDedicatedPage={true} github="https://github.com/qiskit/qiskit-ibmq-provider/tree/stable/0.18/qiskit/providers/ibmq/runtime/program/user_messenger.py" signature="UserMessenger" modifiers="class">
Bases: `object`
Base class for handling communication with program users.
This class can be used when writing a new Qiskit Runtime program.
## Methods
### publish
<Function id="qiskit.providers.ibmq.runtime.UserMessenger.publish" signature="UserMessenger.publish(message, encoder=<class 'qiskit.providers.ibmq.runtime.utils.RuntimeEncoder'>, final=False)">
Publish message.
You can use this method to publish messages, such as interim and final results, to the program user. The messages will be made immediately available to the user, but they may choose not to receive the messages.
The final parameter is used to indicate whether the message is the final result of the program. Final results may be processed differently from interim results.
**Parameters**
* **message** (`Any`) Message to be published. Can be any type.
* **encoder** (`Type`\[`JSONEncoder`]) An optional JSON encoder for serializing
* **final** (`bool`) Whether the message being published is the final result.
**Return type**
`None`
</Function>
</Class>