Interface InternalBuildActionExecutor
-
- All Superinterfaces:
InternalProtocolInterface
@Deprecated public interface InternalBuildActionExecutor extends InternalProtocolInterface
Deprecated.2.1-rc-1 UseInternalCancellableConnection
instead.Mixed into a provider connection, to allow client-provided build actions to be executed.DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
Consumer compatibility: This interface is used by all consumer versions from 1.8-rc-1 to 2.0.
Provider compatibility: This interface is implemented by all provider versions from 1.8-rc-1.
- Since:
- 1.8-rc-1
- See Also:
ConnectionVersion4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <T> BuildResult<T>
run(InternalBuildAction<T> action, BuildParameters operationParameters)
Deprecated.
-
-
-
Method Detail
-
run
@Deprecated <T> BuildResult<T> run(InternalBuildAction<T> action, BuildParameters operationParameters) throws BuildExceptionVersion1, InternalUnsupportedBuildArgumentException, InternalBuildActionFailureException, java.lang.IllegalStateException
Deprecated.Performs some action against a build and returns the result.Consumer compatibility: This method is used by all consumer versions from 1.8-rc-1 to 2.0.
Provider compatibility: This method is implemented by all provider versions from 1.8-rc-1.
- Throws:
BuildExceptionVersion1
- On build failure.InternalUnsupportedBuildArgumentException
- When the specified command-line options are not supported.InternalBuildActionFailureException
- When the action fails with an exception.java.lang.IllegalStateException
- When this connection has been stopped.- Since:
- 1.8-rc-1
-
-