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 Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product