Function

GioBusNameAppearedCallback

since: 2.26

Declaration

void
(* GBusNameAppearedCallback) (
  GDBusConnection* connection,
  const gchar* name,
  const gchar* name_owner,
  gpointer user_data
)

Description

Invoked when the name being watched is known to have to have an owner.

Available since: 2.26

Parameters

connection

Type: GDBusConnection

The GDBusConnection the name is being watched on.

The data is owned by the caller of the function.
name

Type: const gchar*

The name being watched.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
name_owner

Type: const gchar*

Unique name of the owner of the name being watched.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
user_data

Type: gpointer

User data passed to g_bus_watch_name().

The argument can be NULL.
The data is owned by the caller of the function.