Method
EBookBookClientremove_contacts
since: 3.2
Declaration [src]
void
e_book_client_remove_contacts (
EBookClient* client,
const GSList* uids,
guint32 opflags,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description [src]
Removes the contacts with uids from the list uids from client. This is
always more efficient than calling e_book_client_remove_contact() if you
have more than one uid to remove, as some backends can implement it
as a batch request.
The call is finished by e_book_client_remove_contacts_finish()
from the callback.
Available since: 3.2
This method completes asynchronously. Use e_book_client_remove_contacts_finish() inside the GAsyncReadyCallback to obtain the result of the operation.
Parameters
uids-
Type: A list of
utf8A
GSListof UIDs to remove.The data is owned by the caller of the method. Each element is a NUL terminated UTF-8 string. opflags-
Type:
EBookOperationFlagsBit-or of
EBookOperationFlags. cancellable-
Type:
GCancellableA
GCancellable; can beNULL.The argument can be NULL.The data is owned by the caller of the method. callback-
Type:
GAsyncReadyCallbackCallback to call when a result is ready.
The argument can be NULL. user_data-
Type:
gpointerUser data for the
callback.The argument can be NULL.The data is owned by the caller of the method.