Packages

trait Evaluator extends AnyRef

Public facing API of the Mill evaluation logic.

Source
Evaluator.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Evaluator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def baseLogger: ColorLogger
  2. abstract def effectiveThreadCount: Int
  3. abstract def evalOrThrow(exceptionFactory: (Results) => Throwable = r => new Exception(s"Failure during task evaluation: ${formatFailing(r)}")): EvalOrThrow

    Evaluate given task(s) and return the successful result(s), or throw an exception.

  4. abstract def externalOutPath: Path
  5. abstract def outPath: Path
  6. abstract def pathsResolver: EvaluatorPathsResolver
  7. abstract def plan(goals: api.Strict.Agg[define.Task[_]]): (MultiBiMap[Terminal, define.Task[_]], api.Strict.Agg[define.Task[_]])
  8. abstract def rootModule: BaseModule
  9. abstract def withBaseLogger(newBaseLogger: ColorLogger): Evaluator
  10. abstract def withFailFast(newFailFast: Boolean): Evaluator
  11. abstract def workerCache: Map[Segments, (Int, Val)]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def allowPositionalCommandArgs: Boolean
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  7. def disableCallgraphInvalidation: Boolean
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def evaluate(goals: api.Strict.Agg[define.Task[_]], reporter: (Int) => Option[CompileProblemReporter] = _ => Option.empty[CompileProblemReporter], testReporter: TestReporter = DummyTestReporter, logger: ColorLogger = baseLogger, serialCommandExec: Boolean = false): Results
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def evaluate(goals: api.Strict.Agg[define.Task[_]], reporter: (Int) => Option[CompileProblemReporter], testReporter: TestReporter, logger: ColorLogger): Results
    Annotations
    @deprecated
    Deprecated

    (Since version Mill 0.12.0-RC1) Binary compatibility shim. Use overload with parameter serialCommandExec=false instead

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped