ModuleTask

mill.define.ModuleTask
case class ModuleTask[+T](module: Module) extends NamedTask[T]

Attributes

Source
Module.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait NamedTask[T]
class Task[T]
trait Applyable[Task, T]
class Ops[T]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def ctx0: Ctx

Attributes

Definition Classes
Source
Module.scala
override def isPrivate: Option[Boolean]

Attributes

Definition Classes
Source
Module.scala
override def t: Task[T]

The implementation task wrapped by this named task

The implementation task wrapped by this named task

Attributes

Definition Classes
Source
Module.scala

Inherited methods

def apply()(implicit handler: ApplyHandler[Task]): T

Attributes

Inherited from:
Applyable
Source
Applicative.scala
def asCommand: Option[Command[T]]

Attributes

Inherited from:
Task
Source
Task.scala
def asTarget: Option[Target[T]]

Attributes

Inherited from:
Task
Source
Task.scala
def asWorker: Option[Worker[T]]

Attributes

Inherited from:
Task
Source
Task.scala
def evaluate(ctx: Ctx): Result[T]

Evaluate this task

Evaluate this task

Attributes

Inherited from:
NamedTask
Source
Task.scala
def filter(f: T => Boolean): Task[T]

Attributes

Inherited from:
Ops
Source
Task.scala
@Scaladoc(value = "/**\n * Whether or not this [[Task]] deletes the `Task.dest` folder between runs\n */")
def flushDest: Boolean

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

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

Attributes

Inherited from:
Task
Source
Task.scala
def isExclusiveCommand: Boolean

Attributes

Inherited from:
Task
Source
Task.scala
def label: String

Attributes

Inherited from:
NamedTask
Source
Task.scala
def map[V](f: T => V): Task[V]

Attributes

Inherited from:
Ops
Source
Task.scala
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def readWriterOpt: Option[ReadWriter[_]]

Attributes

Inherited from:
NamedTask
Source
Task.scala
def self: Task[T]

Attributes

Inherited from:
Task
Source
Task.scala
@Scaladoc(value = "/**\n * Even if this tasks\'s inputs did not change, does it need to re-evaluate\n * anyway?\n */")
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?

Attributes

Inherited from:
Task
Source
Task.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
NamedTask -> Any
Inherited from:
NamedTask
Source
Task.scala
def withFilter(f: T => Boolean): Task[T]

Attributes

Inherited from:
Ops
Source
Task.scala
def writerOpt: Option[Writer[_]]

Attributes

Inherited from:
NamedTask
Source
Task.scala
def zip[V](other: Task[V]): Task[(T, V)]

Attributes

Inherited from:
Ops
Source
Task.scala

Inherited fields

val ctx: Ctx

Attributes

Inherited from:
NamedTask
Source
Task.scala
val inputs: Seq[Task[_]]

What other tasks does this task depend on?

What other tasks does this task depend on?

Attributes

Inherited from:
NamedTask
Source
Task.scala