Packages

final case class ResultsCache extends Product with Serializable

Maps projects to compilation results, populated by Tasks.compile.

The results cache has two important goals:

  1. Keep track of the last compilation results, no matter what results those were. 2. Keep track of the last successful incremental results per project, so that they can be used by compile to locate the last good analysis file.

This data structure is not thread-safe and should not be used like so.

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResultsCache
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 addFinalResults(ps: List[FinalCompileResult]): ResultsCache
  5. def addResult(project: Project, results: ResultBundle): ResultsCache
  6. val all: Map[Project, Result]
  7. def allAnalysis: Seq[Analysis]
  8. def allResults: Iterator[(Project, Result)]
  9. def allSuccessful: Iterator[(Project, LastSuccessfulResult)]
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def cleanSuccessful(projects: Set[Project], client: ClientInfo, logger: Logger): Task[ResultsCache]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  13. def diffLatest(cache: ResultsCache): List[(Project, Result)]

    Diff the latest changed projects between cache and this.

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def lastSuccessfulResultOrEmpty(project: Project): LastSuccessfulResult

    Returns the last successful result if present, empty otherwise.

  18. def latestResult(project: Project): Result

    Returns the latest compilation result if present, empty otherwise.

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. def productElementNames: Iterator[String]
    Definition Classes
    Product
  23. def replacePreviousResults(ps: Map[Project, Result]): ResultsCache
  24. val successful: Map[Project, LastSuccessfulResult]
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    ResultsCache → AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped