Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

UserMessenger

class UserMessenger

GitHub

Bases: object

Base class for handling communication with program users.

This class can be used when writing a new Qiskit Runtime program.


Methods

publish

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

Was this page helpful?
Report a bug or request content on GitHub.