aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc/dbus.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/misc/dbus.texi')
-rw-r--r--doc/misc/dbus.texi17
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/misc/dbus.texi b/doc/misc/dbus.texi
index e6fb00d3482..204afe7056e 100644
--- a/doc/misc/dbus.texi
+++ b/doc/misc/dbus.texi
@@ -9,7 +9,7 @@
9@syncodeindex fn cp 9@syncodeindex fn cp
10 10
11@copying 11@copying
12Copyright @copyright{} 2007-2011 Free Software Foundation, Inc. 12Copyright @copyright{} 2007-2012 Free Software Foundation, Inc.
13 13
14@quotation 14@quotation
15Permission is granted to copy, distribute and/or modify this document 15Permission is granted to copy, distribute and/or modify this document
@@ -332,7 +332,7 @@ Example:
332@code{method}, @code{signal}, and @code{property} elements. Unlike 332@code{method}, @code{signal}, and @code{property} elements. Unlike
333properties, which can change their values during lifetime of a D-Bus 333properties, which can change their values during lifetime of a D-Bus
334object, annotations are static. Often they are used for code 334object, annotations are static. Often they are used for code
335generators of D-Bus langugae bindings. Example: 335generators of D-Bus language bindings. Example:
336 336
337@example 337@example
338<annotation name="de.berlios.Pinot.GetStatistics" value="pinotDBus"/> 338<annotation name="de.berlios.Pinot.GetStatistics" value="pinotDBus"/>
@@ -553,7 +553,7 @@ data from a running system:
553@node Methods and Signal 553@node Methods and Signal
554@section Applying the functionality. 554@section Applying the functionality.
555 555
556Methods and signals are the communicatione means to D-Bus. The 556Methods and signals are the communication means to D-Bus. The
557following functions return their specifications. 557following functions return their specifications.
558 558
559@defun dbus-introspect-get-method-names bus service path interface 559@defun dbus-introspect-get-method-names bus service path interface
@@ -1606,9 +1606,10 @@ D-Bus @var{bus}.
1606 1606
1607@var{service} is the D-Bus service name used by the sending D-Bus 1607@var{service} is the D-Bus service name used by the sending D-Bus
1608object. It can be either a known name or the unique name of the D-Bus 1608object. It can be either a known name or the unique name of the D-Bus
1609object sending the signal. In case of a unique name, signals won't be 1609object sending the signal. A known name will be mapped onto the
1610received any longer once the object owning this unique name has 1610unique name of the object, owning @var{service} at registration time.
1611disappeared, and a new queued object has replaced it. 1611When the corresponding D-Bus object disappears, signals won't be
1612received any longer.
1612 1613
1613When @var{service} is @code{nil}, related signals from all D-Bus 1614When @var{service} is @code{nil}, related signals from all D-Bus
1614objects shall be accepted. 1615objects shall be accepted.
@@ -1677,7 +1678,7 @@ Establish the connection to D-Bus @var{bus}.
1677 1678
1678@var{bus} can be either the symbol @code{:system} or the symbol 1679@var{bus} can be either the symbol @code{:system} or the symbol
1679@code{:session}, or it can be a string denoting the address of the 1680@code{:session}, or it can be a string denoting the address of the
1680corresponding bus. For the system and session busses, this function 1681corresponding bus. For the system and session buses, this function
1681is called when loading @file{dbus.el}, there is no need to call it 1682is called when loading @file{dbus.el}, there is no need to call it
1682again. 1683again.
1683 1684
@@ -1816,7 +1817,7 @@ handled by a hook function.
1816@defvar dbus-event-error-hooks 1817@defvar dbus-event-error-hooks
1817This hook variable keeps a list of functions, which are called when a 1818This hook variable keeps a list of functions, which are called when a
1818D-Bus error happens in the event handler. Every function must accept 1819D-Bus error happens in the event handler. Every function must accept
1819two arguments, the event and the error variable catched in 1820two arguments, the event and the error variable caught in
1820@code{condition-case} by @code{dbus-error}. 1821@code{condition-case} by @code{dbus-error}.
1821 1822
1822Such functions can be used the adapt the error signal to be raised. 1823Such functions can be used the adapt the error signal to be raised.