o

sbt

EvaluateTask

object EvaluateTask

Source
EvaluateTask.scala
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. 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. val SystemProcessors: Int
  5. 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.

  6. 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.

  7. def applyResults[T](results: RMap[Task, Result], state: State, root: Task[T]): (State, Result[T])
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def cancelStrategy(extracted: Extracted, structure: BuildStructure, state: State): TaskCancellationStrategy
  10. def cancelable(extracted: Extracted, structure: BuildStructure): Boolean
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. def convertCyclic(c: AnyCyclic): String
  13. def convertCyclicInc: (Incomplete) ⇒ Incomplete
  14. val currentlyRunningEngine: AtomicReference[(SafeState, RunningTaskEngine)]
  15. def defaultRestrictions(extracted: Extracted, structure: BuildStructure): Seq[Rule]
  16. def defaultRestrictions(maxWorkers: Int): List[Rule]
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def evalPluginDef(pluginDef: BuildStructure, state: State): PluginData
  20. def extractedTaskConfig(extracted: Extracted, structure: BuildStructure, state: State): EvaluateTaskConfig
  21. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def getSetting[T](key: SettingKey[T], default: T, extracted: Extracted, structure: BuildStructure): T
  24. def getStreams(key: Def.ScopedKey[_], streams: Streams): TaskStreams
  25. def getTask[T](structure: BuildStructure, taskKey: Def.ScopedKey[Task[T]], state: State, streams: Streams, ref: ProjectRef): Option[(Task[T], NodeView[Task])]
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def injectSettings: Seq[Def.Setting[_]]
  28. val injectStreams: (Def.ScopedKey[_]) ⇒ Seq[Def.Setting[_]]
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. val lastEvaluatedState: AtomicReference[SafeState]
  31. def liftAnonymous: (Incomplete) ⇒ Incomplete
  32. def logIncResult(result: Result[_], state: State, streams: Streams): Unit
  33. def logIncomplete(result: Incomplete, state: State, streams: Streams): Unit
  34. def maxWorkers(extracted: Extracted, structure: BuildStructure): Int
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. def nodeView[HL <: HList](state: State, streams: Streams, roots: Seq[Def.ScopedKey[_]], dummies: DummyTaskMap = DummyTaskMap(Nil)): NodeView[Task]
  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. def onResult[T, S](result: Result[T])(f: (T) ⇒ S): S
  40. def processResult2[T](result: Result[T], show: Boolean = false): T
  41. def restrictions(extracted: Extracted, structure: BuildStructure): Seq[Rule]
  42. def restrictions(state: State): Seq[Rule]
  43. def runTask[T](root: Task[T], state: State, streams: Streams, triggers: Triggers[Task], config: EvaluateTaskConfig)(implicit taskToNode: NodeView[Task]): (State, Result[T])

    The main method for the task engine.

    The main method for the task engine. See also Aggregation.runTasks.

  44. def stateTransform(results: RMap[Task, Result]): (State) ⇒ State
  45. def suppressedMessage(key: Def.ScopedKey[_])(implicit display: Show[Def.ScopedKey[_]]): String
  46. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  47. def taskTimingProgress: Option[ExecuteProgress[Task]]
  48. def taskToKey: (Incomplete) ⇒ Incomplete
  49. def taskTraceEvent: Option[ExecuteProgress[Task]]
  50. def toString(): String
    Definition Classes
    AnyRef → Any
  51. def transformInc[T](result: Result[T]): Result[T]
  52. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  55. 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

Inherited from AnyRef

Inherited from Any

Ungrouped