Development/Tutorials/D-Bus/Introduction: Difference between revisions

From KDE TechBase
No edit summary
 
No edit summary
(51 intermediate revisions by 19 users not shown)
Line 1: Line 1:
== Abstract ==
This tutorial was updated and moved to https://develop.kde.org/docs/d-bus/introduction_to_dbus/


[http://www.freedesktop.org/wiki/Software/dbus DBUS] is a Free/Open Source software '''i'''nter'''p'''rocess '''c'''ommunications (IPC) mechanism that is in widespread use by open source desktop software today. It is part of the [http://freedesktop.org freedesktop.org] project and used in a wide range of applications. Examples include hotplug notifications on Linux, desktop search queries in strigi and as the primary means of IPC in KDE 4. This tutorial looks at the basic concepts of and terminology used in DBUS from an application developer's perspective.
[[Category:MovedDevelop]]
 
{{tip|For more in depth looks at the DBUS wire protocol, system bus or other information that is not covered in this tutorial, visit the {{http://www.freedesktop.org/wiki/Software/dbus#head-9e9cf3221a30246219863f1d2366e36cb580debc DBUS documentation page]}}
 
== Prerequisites ==
None.
 
== What Is IPC ==
 
== When To Use DBUS ==
 
== The Buses ==
 
== Messages ==
 
== Namespaces and Addresses ==
 
=== Interfaces ===
 
=== Services ===
 
=== Objects ===
 
== Calling and Being Called ==
 
=== Methods ===
 
=== Signals ===
 
 
== Useful Tools ==
 
=== qdbus ===
 
=== dbus-viewer ===
 
== Other Resources ==

Revision as of 09:48, 4 October 2020

This tutorial was updated and moved to https://develop.kde.org/docs/d-bus/introduction_to_dbus/