Package: gio

Function g-application-register

Lambda List

g-application-register (application)

Arguments

application -- a g-application instance

Return Value

True if registration succeeded.

Details

Attempts registration of the application. This is the point at which the application discovers if it is the primary instance or merely acting as a remote for an already existing primary instance. This is implemented by attempting to acquire the application identifier as a unique bus name on the session bus using GDBus.

Due to the internal architecture of GDBus, method calls can be dispatched at any time, even if a main loop is not running. For this reason, you must ensure that any object paths that you wish to register are registered before calling this function.

If the application has already been registered then true is returned with no work performed. The "startup" signal is emitted if registration succeeds and the application is the primary instance. In the event of an error false is returned.

Note

The return value of this function is not an indicator that this instance is or is not the primary instance of the application. See the g-application-is-remote function for that.
 

See also

2021-9-9