run

abstract fun run(): T(source)

Runs the action, blocking until its result is available.

Since

1.8

Throws

When the target Gradle version does not support build action execution.

When the target Gradle version does not support some requested configuration option.

When there is a problem with build arguments provided by withArguments.

When the build action fails with an exception.

When the operation was cancelled before it completed successfully.

On some failure executing the Gradle build.

On some other failure using the connection.

When the connection has been closed or is closing.


abstract fun run(handler: ResultHandler<in T>)(source)

Starts executing the action, passing the result to the given handler when complete. This method returns immediately, and the result is later passed to the given handler's onComplete method.

If the operation fails, the handler's onFailure method is called with the appropriate exception. See run for a description of the various exceptions that the operation may fail with.

Since

1.8

Parameters

handler

The handler to supply the result to.

Throws

When the connection has been closed or is closing.