DBusConnection.sendMessageWithReplySync

Synchronously sends message to the peer represented by connection and blocks the calling thread until a reply is received or the timeout is reached. See g_dbus_connection_send_message_with_reply() for the asynchronous version of this method. Unless flags contain the G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag, the serial number will be assigned by connection and set on message via g_dbus_message_set_serial(). If out_serial is not NULL, then the serial number used will be written to this location prior to submitting the message to the underlying transport. If connection is closed then the operation will fail with G_IO_ERROR_CLOSED. If cancellable is canceled, the operation will fail with G_IO_ERROR_CANCELLED. If message is not well-formed, the operation fails with G_IO_ERROR_INVALID_ARGUMENT. Note that error is only set if a local in-process error occured. That is to say that the returned GDBusMessage object may be of type G_DBUS_MESSAGE_TYPE_ERROR. Use g_dbus_message_to_gerror() to transcode this to a GError. See Example 2, “D-Bus server example” and Example 4, “D-Bus UNIX File Descriptor example” for an example of how to use this low-level API to send and receive UNIX file descriptors. Note that message must be unlocked, unless flags contain the G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL flag. Since 2.26

class DBusConnection
sendMessageWithReplySync

Parameters

message DBusMessage

A GDBusMessage.

flags GDBusSendMessageFlags

Flags affecting how the message is sent.

timeoutMsec int

The timeout in milliseconds, -1 to use the default timeout or G_MAXINT for no timeout.

outSerial uint

Return location for serial number assigned to message when sending it or NULL. out[allow-none]

cancellable Cancellable

A GCancellable or NULL.

Return Value

A locked GDBusMessage that is the reply to message or NULL if error is set. [transfer full]

Throws

GException on failure.

Meta