![]() |
![]() |
![]() |
GNOME Online Accounts Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
void goa_client_new (GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
); GoaClient * goa_client_new_finish (GAsyncResult *res
,GError **error
); GoaClient * goa_client_new_sync (GCancellable *cancellable
,GError **error
); GoaManager * goa_client_get_manager (GoaClient *self
); GList * goa_client_get_accounts (GoaClient *self
); GDBusObjectManager * goa_client_get_object_manager (GoaClient *self
); GoaObject * goa_client_lookup_by_id (GoaClient *self
,const gchar *id
);
GoaClient is used for accessing the GNOME Online Accounts service from a client program.
void goa_client_new (GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously gets a GoaClient. When the operation is
finished, callback
will be invoked in the
|
A GCancellable or NULL . |
|
Function that will be called when the result is ready. |
|
Data to pass to callback . |
GoaClient * goa_client_new_finish (GAsyncResult *res
,GError **error
);
Finishes an operation started with goa_client_new()
.
|
A GAsyncResult. |
|
Return location for error or NULL . |
Returns : |
A GoaClient or NULL if error is set. Free with
g_object_unref() when done with it. |
GoaClient * goa_client_new_sync (GCancellable *cancellable
,GError **error
);
Synchronously gets a GoaClient for the local system.
|
A GCancellable or NULL . [allow-none]
|
|
Return location for error or NULL . [allow-none]
|
Returns : |
A GoaClient or NULL if error is set. Free with
g_object_unref() when done with it. |
GoaManager * goa_client_get_manager (GoaClient *self
);
Gets the GoaManager for self
.
|
A GoaClient. |
Returns : |
A GoaManager. Do not free, the returned
object belongs to self . [transfer none]
|
GList * goa_client_get_accounts (GoaClient *self
);
Gets all accounts that self
knows about. The result is a list of
GoaObject instances where each object at least has an GoaAccount
interface (that can be obtained via the goa_object_get_account()
method) but may also implement other interfaces such as
GoaMail or GoaFiles.
GDBusObjectManager * goa_client_get_object_manager (GoaClient *self
);
Gets the GDBusObjectManager used by self
.
|
A GoaClient. |
Returns : |
A GDBusObjectManager. Do not free, the
instance is owned by self . [transfer none]
|
GoaObject * goa_client_lookup_by_id (GoaClient *self
,const gchar *id
);
Finds and returns the GoaObject instance whose
"Id"
D-Bus property matches id
.
|
A GoaClient. |
|
The ID to look for. |
Returns : |
A GoaObject. Free the returned
object with g_object_unref() . [transfer full]
|
Since 3.6