Interface InternalOperationResult
-
- All Superinterfaces:
InternalProtocolInterface
- All Known Subinterfaces:
InternalFailureResult,InternalIncrementalTaskResult,InternalJavaCompileTaskOperationResult,InternalProjectConfigurationResult,InternalSuccessResult,InternalTaskCachedResult,InternalTaskFailureResult,InternalTaskResult,InternalTaskSkippedResult,InternalTaskSuccessResult,InternalTestFailureResult,InternalTestOutputResult,InternalTestResult,InternalTestSkippedResult,InternalTestSuccessResult
public interface InternalOperationResult extends InternalProtocolInterface
DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.- Since:
- 2.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetEndTime()Returns the time the result was produced.java.util.List<? extends InternalFailure>getFailures()Returns the failures that occurred while running the build, if any.longgetStartTime()Returns the time the build execution started.
-
-
-
Method Detail
-
getStartTime
long getStartTime()
Returns the time the build execution started.- Returns:
- The start time of the build
-
getEndTime
long getEndTime()
Returns the time the result was produced.- Returns:
- The time the result was produced.
-
getFailures
java.util.List<? extends InternalFailure> getFailures()
Returns the failures that occurred while running the build, if any.- Returns:
- The failures that occurred
-
-