t

mill.define

NamedTask

trait NamedTask[+T] extends Task[T]

Represents a task that can be referenced by its path segments. T{...} targets, T.input, T.worker, etc. but not including anonymous T.task or T.traverse etc. instances

Source
Task.scala
Linear Supertypes
Task[T], Applyable[Task, T], Ops[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NamedTask
  2. Task
  3. Applyable
  4. Ops
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def ctx0: Ctx
  2. abstract def isPrivate: Option[Boolean]
  3. abstract def t: Task[T]

    The implementation task wrapped by this named task

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 apply()(implicit handler: ApplyHandler[Task]): T
    Definition Classes
    Applyable
  5. def asCommand: Option[Command[T]]
    Definition Classes
    Task
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asTarget: Option[Target[T]]
    Definition Classes
    Task
  8. def asWorker: Option[Worker[T]]
    Definition Classes
    Task
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. val ctx: Ctx
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def evaluate(ctx: api.Ctx): Result[T]

    Evaluate this task

    Evaluate this task

    Definition Classes
    NamedTaskTask
  14. def filter(f: (T) => Boolean): Task[T]
    Definition Classes
    Ops
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. def flushDest: Boolean

    Whether or not this Task deletes the T.dest folder between runs

    Whether or not this Task deletes the T.dest folder between runs

    Definition Classes
    Task
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. val inputs: Seq[Task[_]]

    What other tasks does this task depend on?

    What other tasks does this task depend on?

    Definition Classes
    NamedTaskTask
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def label: String
  22. def map[V](f: (T) => V): Task[V]
    Definition Classes
    Ops
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def readWriterOpt: Option[upickle.default.ReadWriter[_]]
  27. def self: Task[T]
    Definition Classes
    TaskApplyable
  28. def sideHash: Int

    Even if this tasks's inputs did not change, does it need to re-evaluate anyway?

    Even if this tasks's inputs did not change, does it need to re-evaluate anyway?

    Definition Classes
    Task
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    NamedTask → AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. def withFilter(f: (T) => Boolean): Task[T]
    Definition Classes
    Ops
  35. def writerOpt: Option[upickle.default.Writer[_]]
  36. def zip[V](other: Task[V]): Task[(T, V)]
    Definition Classes
    Ops

Inherited from Task[T]

Inherited from Applyable[Task, T]

Inherited from Ops[T]

Inherited from AnyRef

Inherited from Any

Ungrouped