1:255.16-alt1
[systemd_ALT.git] / man / sd_bus_enqueue_for_read.xml
blobdac32a07ec4ef9bebfc99264b2807d6c75b15cce
1 <?xml version='1.0'?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
6 <refentry id="sd_bus_enqueue_for_read"
7           xmlns:xi="http://www.w3.org/2001/XInclude">
9   <refentryinfo>
10     <title>sd_bus_enqueue_for_read</title>
11     <productname>systemd</productname>
12   </refentryinfo>
14   <refmeta>
15     <refentrytitle>sd_bus_enqueue_for_read</refentrytitle>
16     <manvolnum>3</manvolnum>
17   </refmeta>
19   <refnamediv>
20     <refname>sd_bus_enqueue_for_read</refname>
22     <refpurpose>Re-enqueue a bus message on a bus connection, for reading</refpurpose>
23   </refnamediv>
25   <refsynopsisdiv>
26     <funcsynopsis>
27       <funcsynopsisinfo>#include &lt;systemd/sd-bus.h&gt;</funcsynopsisinfo>
29       <funcprototype>
30         <funcdef>int <function>sd_bus_enqueue_for_read</function></funcdef>
31         <paramdef>sd_bus *<parameter>bus</parameter></paramdef>
32         <paramdef>sd_bus_message *<parameter>message</parameter></paramdef>
33       </funcprototype>
35     </funcsynopsis>
36   </refsynopsisdiv>
38   <refsect1>
39     <title>Description</title>
41     <para><function>sd_bus_enqueue_for_read()</function> may be used to re-enqueue an incoming bus message on
42     the local read queue, so that it is processed and dispatched locally again, similarly to how an incoming
43     message from the peer is processed. Takes a bus connection object and the message to enqueue. A reference
44     is taken of the message and the caller's reference thus remains in possession of the caller. The message
45     is enqueued at the end of the queue, thus will be dispatched after all other already queued messages are
46     dispatched.</para>
48     <para>This call is primarily useful for dealing with incoming method calls that may be processed only
49     after an additional asynchronous operation completes. One example are PolicyKit authorization requests
50     that are determined to be necessary to authorize a newly incoming method call: when the PolicyKit response
51     is received the original method call may be re-enqueued to process it again, this time with the
52     authorization result known.</para>
53   </refsect1>
55   <refsect1>
56     <title>Return Value</title>
58     <para>On success, this function return 0 or a positive integer. On failure, it returns a negative errno-style
59     error code.</para>
61     <refsect2>
62       <title>Errors</title>
64       <para>Returned errors may indicate the following problems:</para>
66       <variablelist>
67         <varlistentry>
68           <term><constant>-ECHILD</constant></term>
70           <listitem><para>The bus connection has been created in a different process, library or module instance.</para>
72           <xi:include href="version-info.xml" xpointer="v245"/></listitem>
73         </varlistentry>
74       </variablelist>
75     </refsect2>
76   </refsect1>
78   <xi:include href="libsystemd-pkgconfig.xml" />
80   <refsect1>
81     <title>History</title>
82     <para><function>sd_bus_enqueue_for_read()</function> was added in version 245.</para>
83   </refsect1>
85   <refsect1>
86     <title>See Also</title>
88     <para>
89       <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
90       <citerefentry><refentrytitle>sd-bus</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
91       <citerefentry><refentrytitle>sd_bus_send</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
92     </para>
93   </refsect1>
95 </refentry>