File: blocking.rst

package info (click to toggle)
jeepney 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 592 kB
  • sloc: python: 3,036; makefile: 206; xml: 115
file content (33 lines) | stat: -rw-r--r-- 742 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Blocking I/O
============

This is a good option for simple scripts, where you don't need to do anything
else while waiting for a D-Bus reply. If you will use D-Bus for multiple
threads, or you want a nicer way to wait for signals, see :doc:`threading`.

.. module:: jeepney.io.blocking

.. autofunction:: open_dbus_connection

.. autoclass:: DBusConnection

   .. automethod:: send

   .. automethod:: receive

   .. automethod:: send_and_get_reply

   .. automethod:: recv_messages

   .. automethod:: filter

   .. automethod:: recv_until_filtered

   .. automethod:: close

      Using ``with open_dbus_connection()`` will also close the connection on
      exiting the block.

.. autoclass:: Proxy

   .. seealso:: :ref:`msggen_proxies`