DBusConnection.flush

Asynchronously flushes connection, that is, writes all queued outgoing message to the transport and then flushes the transport (using g_output_stream_flush_async()). This is useful in programs that wants to emit a D-Bus signal and then exit immediately. Without flushing the connection, there is no guarantee that the message has been sent to the networking buffers in the OS kernel. This is an asynchronous method. When the operation is finished, callback will be invoked in the thread-default main loop of the thread you are calling this method from. You can then call g_dbus_connection_flush_finish() to get the result of the operation. See g_dbus_connection_flush_sync() for the synchronous version. Since 2.26

class DBusConnection
void
flush

Parameters

cancellable Cancellable

A GCancellable or NULL.

callback GAsyncReadyCallback

A GAsyncReadyCallback to call when the request is satisfied or NULL if you don't care about the result. [allow-none]

userData void*

The data to pass to callback.

Meta