api / org.gradle.tooling.events.task / TaskOperationResult

TaskOperationResult

interface TaskOperationResult : OperationResult

Describes the result of running a task operation.

Since
2.5

Inherited Functions

getEndTime

abstract fun getEndTime(): Long

Returns the time when the operation finished its execution.

getStartTime

abstract fun getStartTime(): Long

Returns the time when the operation started its execution.

Inheritors

TaskFailureResult

interface TaskFailureResult : TaskOperationResult, FailureResult

Describes how a task operation finished with failures.

TaskSkippedResult

interface TaskSkippedResult : TaskOperationResult, SkippedResult

Describes how a task operation was skipped.

TaskSuccessResult

interface TaskSuccessResult : TaskOperationResult, SuccessResult

Describes how a task operation finished successfully.