Function gio::functions::dbus_address_get_stream
source · pub fn dbus_address_get_stream<P: FnOnce(Result<(IOStream, Option<GString>), Error>) + 'static>(
address: &str,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P
)
Expand description
Asynchronously connects to an endpoint specified by address
and
sets up the connection so it is in a state to run the client-side
of the D-Bus authentication conversation. address
must be in the
D-Bus address format.
When the operation is finished, callback
will be invoked. You can
then call g_dbus_address_get_stream_finish()
to get the result of
the operation.
This is an asynchronous failable function. See
dbus_address_get_stream_sync()
for the synchronous version.
address
A valid D-Bus address.
cancellable
A Cancellable
or None
.
callback
A GAsyncReadyCallback
to call when the request is satisfied.