Result
mill.eval.Evaluator.Result
@Scaladoc(value = "/**\n * @param watchable the list of [[Watchable]]s that were generated during this evaluation,\n * useful if you want to know what to watch in case you need to re-run it.\n * @param values A sequence of values returned by evaluation.\n * @param selectedTasks The tasks that actually were selected to be run during this evaluation\n * @param executionResults Detailed information on the results of executing each task\n */")
case class Result[T](watchable: Seq[Watchable], values: Result[Seq[T]], selectedTasks: Seq[Task[_]], executionResults: ExecutionResults)
Value parameters
- executionResults
-
Detailed information on the results of executing each task
- selectedTasks
-
The tasks that actually were selected to be run during this evaluation
- values
-
A sequence of values returned by evaluation.
- watchable
-
the list of Watchables that were generated during this evaluation, useful if you want to know what to watch in case you need to re-run it.
Attributes
- Source
- Evaluator.scala
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article