Method
FwupdClientdownload_bytes2_async
since: 2.1.8
Declaration [src]
void
fwupd_client_download_bytes2_async (
FwupdClient* self,
GPtrArray* urls,
FwupdClientDownloadFlags flags,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer callback_data
)
Description [src]
Downloads data from a remote server. The fwupd_client_set_user_agent() function
should be called before this method is used.
You must have called fwupd_client_connect_async() on self before using
this method.
NOTE: This method is thread-safe, but progress signals will be
emitted in the global default main context, if not explicitly set with
fwupd_client_set_main_context().
Available since: 2.1.8
This method completes asynchronously. Use fwupd_client_download_bytes2_finish() inside the GAsyncReadyCallback to obtain the result of the operation.
Parameters
urls-
Type: An array of
utf8The remote URLs.
The data is owned by the caller of the method. Each element is a NUL terminated UTF-8 string. flags-
Type:
FwupdClientDownloadFlagsDownload flags, e.g.
FWUPD_CLIENT_DOWNLOAD_FLAG_NONE. cancellable-
Type:
GCancellableOptional
GCancellable.The argument can be NULL.The data is owned by the caller of the method. callback-
Type:
GAsyncReadyCallbackThe function to run on completion.
The argument can be NULL. callback_data-
Type:
gpointerThe data to pass to
callback.The argument can be NULL.The data is owned by the caller of the method.