]> git.ipfire.org Git - thirdparty/qemu.git/commit
python/aqmp: add execute() interfaces
authorJohn Snow <jsnow@redhat.com>
Wed, 15 Sep 2021 16:29:48 +0000 (12:29 -0400)
committerJohn Snow <jsnow@redhat.com>
Mon, 27 Sep 2021 16:10:29 +0000 (12:10 -0400)
commite0fea0b3ac85aefacbecf732d18f6d7ba438fa69
tree59491810225ef56a608f4fe00ea83e64766f5d93
parent577737be55a3e9e5d592ad31d4b7c71ebccf3dc8
python/aqmp: add execute() interfaces

Add execute() and execute_msg().

_execute() is split into _issue() and _reply() halves so that
hypothetical subclasses of QMP that want to support different execution
paradigms can do so.

I anticipate a synchronous interface may have need of separating the
send/reply phases. However, I do not wish to expose that interface here
and want to actively discourage it, so they remain private interfaces.

Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 20210915162955.333025-21-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
python/qemu/aqmp/__init__.py
python/qemu/aqmp/qmp_client.py