Gio.Application.prototype.register

function register(cancellable: Gio.Cancellable): Boolean {
    // Gjs wrapper for g_application_register()
}
  

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.

If there is no application ID or if Gio.ApplicationFlags.non_unique was given, then this process will always become the primary instance.

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 Gio.Application::startup signal is emitted if registration succeeds and application is the primary instance (including the non-unique case).

In the event of an error (such as cancellable being cancelled, or a failure to connect to the session bus), false is returned and @error is set appropriately.

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 Gio.Application.prototype.get_is_remote for that.

Since 2.28

cancellable

a Gio.Cancellable, or null

Returns

true if registration succeeded