Packages

o

sbt

EvaluateTask

object EvaluateTask

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EvaluateTask
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AnyCyclic = CyclicException[_]

Value Members

  1. val SystemProcessors: Int
  2. def apply[T](structure: BuildStructure, taskKey: Def.ScopedKey[Task[T]], state: State, ref: ProjectRef, config: EvaluateTaskConfig): Option[(State, Result[T])]

    Evaluates taskKey and returns the new State and the result of the task wrapped in Some.

    Evaluates taskKey and returns the new State and the result of the task wrapped in Some. If the task is not defined, None is returned. The provided task key is resolved against the current project ref. config configures concurrency and canceling of task execution.

  3. def apply[T](structure: BuildStructure, taskKey: Def.ScopedKey[Task[T]], state: State, ref: ProjectRef): Option[(State, Result[T])]

    Evaluates taskKey and returns the new State and the result of the task wrapped in Some.

    Evaluates taskKey and returns the new State and the result of the task wrapped in Some. If the task is not defined, None is returned. The provided task key is resolved against the current project ref. Task execution is configured according to settings defined in the loaded project.

  4. def applyResults[T](results: RMap[Task, Result], state: State, root: Task[T]): (State, Result[T])
  5. def cancelStrategy(extracted: Extracted, structure: BuildStructure, state: State): TaskCancellationStrategy
  6. def cancelable(extracted: Extracted, structure: BuildStructure): Boolean
  7. def convertCyclic(c: AnyCyclic): String
  8. def convertCyclicInc: (Incomplete) ⇒ Incomplete
  9. def defaultRestrictions(extracted: Extracted, structure: BuildStructure): Seq[Rule]
  10. def defaultRestrictions(maxWorkers: Int): List[Rule]
  11. def evalPluginDef(pluginDef: BuildStructure, state: State): PluginData
  12. def extractedTaskConfig(extracted: Extracted, structure: BuildStructure, state: State): EvaluateTaskConfig
  13. def getSetting[T](key: SettingKey[T], default: T, extracted: Extracted, structure: BuildStructure): T
  14. def getStreams(key: Def.ScopedKey[_], streams: Streams): TaskStreams
  15. def getTask[T](structure: BuildStructure, taskKey: Def.ScopedKey[Task[T]], state: State, streams: Streams, ref: ProjectRef): Option[(Task[T], NodeView[Task])]
  16. def injectSettings: Seq[Def.Setting[_]]
  17. val injectStreams: (Def.ScopedKey[_]) ⇒ Seq[Def.Setting[_]]
  18. def liftAnonymous: (Incomplete) ⇒ Incomplete
  19. def logIncResult(result: Result[_], state: State, streams: Streams): Unit
  20. def logIncomplete(result: Incomplete, state: State, streams: Streams): Unit
  21. def maxWorkers(extracted: Extracted, structure: BuildStructure): Int
  22. def nodeView[HL <: HList](state: State, streams: Streams, roots: Seq[Def.ScopedKey[_]], dummies: DummyTaskMap = DummyTaskMap(Nil)): NodeView[Task]
  23. def onResult[T, S](result: Result[T])(f: (T) ⇒ S): S
  24. def processResult2[T](result: Result[T], show: Boolean = false): T
  25. def restrictions(extracted: Extracted, structure: BuildStructure): Seq[Rule]
  26. def restrictions(state: State): Seq[Rule]
  27. def runTask[T](root: Task[T], state: State, streams: Streams, triggers: Triggers[Task], config: EvaluateTaskConfig)(implicit taskToNode: NodeView[Task]): (State, Result[T])
  28. def stateTransform(results: RMap[Task, Result]): (State) ⇒ State
  29. def suppressedMessage(key: Def.ScopedKey[_])(implicit display: Show[Def.ScopedKey[_]]): String
  30. def taskToKey: (Incomplete) ⇒ Incomplete
  31. def transformInc[T](result: Result[T]): Result[T]
  32. def withStreams[T](structure: BuildStructure, state: State)(f: (Streams) ⇒ T): T

Deprecated Value Members

  1. def evalPluginDef(log: Logger)(pluginDef: BuildStructure, state: State): PluginData
    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.1) Use variant which doesn't take a logger

  2. def onResult[T, S](result: Result[T], log: Logger)(f: (T) ⇒ S): S
    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.1) Use variant that doesn't take log

  3. def processResult[T](result: Result[T], log: Logger, show: Boolean = false): T
    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.1) Use processResult2 which doesn't take the unused log param