wok
annotate dbus/description.txt @ rev 25705
fusecloop/extract_compressed_fs: can convert to v0.68 or v1.0
author |
Pascal Bellard <pascal.bellard@slitaz.org> |
date |
Sat Jun 22 12:48:49 2024 +0000 (4 months ago) |
parents |
|
children |
|
rev |
line source |
al@17992
|
1 D-Bus is a message bus, used for sending messages between applications.
|
al@17992
|
2 Conceptually, it fits somewhere in between raw sockets and CORBA in terms of
|
al@17992
|
3 complexity.
|
al@17992
|
4
|
al@17992
|
5 D-Bus supports broadcast messages, asynchronous messages (thus decreasing
|
al@17992
|
6 latency), authentication, and more. It is designed to be low-overhead; messages
|
al@17992
|
7 are sent using a binary protocol, not using XML. D-Bus also supports a method
|
al@17992
|
8 call mapping for its messages, but it is not required; this makes using the
|
al@17992
|
9 system quite simple.
|
al@17992
|
10
|
al@17992
|
11 It comes with several bindings, including GLib, Python, Qt and Java.
|