Method

IdeDeployStrategyload_async

Declaration

void
ide_deploy_strategy_load_async (
  IdeDeployStrategy* self,
  IdePipeline* pipeline,
  GCancellable* cancellable,
  GAsyncReadyCallback callback,
  gpointer user_data
)

Description

Asynchronously requests that the IdeDeployStrategy load anything necessary to support deployment for pipeline. If the strategy cannot support the pipeline, it should fail with G_IO_ERROR error domain and G_IO_ERROR_NOT_SUPPORTED error code.

Generally, the deployment strategy is responsible for checking if it can support deployment to the given device, and determine how to get the install data out of the pipeline. Given so many moving parts in build systems, how to determine that is an implementation detail of the specific IdeDeployStrategy.

Parameters

pipeline

Type: IdePipeline

An IdePipeline.

The data is owned by the caller of the method.
cancellable

Type: GCancellable

A GCancellable, or NULL.

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

Type: GAsyncReadyCallback

A callback to execute upon completion.

The argument can be NULL.
user_data

Type: gpointer

Closure data for callback.

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