Packages

case class UniqueCompileInputs(sources: Vector[HashedSource], classpath: Vector[FileHash], options: Vector[String], scalaJars: Vector[String], originProjectPath: String) extends CacheHashCode with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UniqueCompileInputs
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. CacheHashCode
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UniqueCompileInputs(sources: Vector[HashedSource], classpath: Vector[FileHash], options: Vector[String], scalaJars: Vector[String], originProjectPath: String)

Value Members

  1. val classpath: Vector[FileHash]
  2. def equals(other: Any): Boolean
    Definition Classes
    UniqueCompileInputs → Equals → AnyRef → Any
  3. lazy val hashCode: Int

    Custom hash code that does not take into account ordering of sources and classpath hashes that can change from run to run since they are computed in parallel.

    Custom hash code that does not take into account ordering of sources and classpath hashes that can change from run to run since they are computed in parallel. This hash code is cached in a val so that we don't need to recompute it every time we use it in a map/set.

    Definition Classes
    UniqueCompileInputsCacheHashCode → AnyRef → Any
  4. val options: Vector[String]
  5. val originProjectPath: String
  6. val scalaJars: Vector[String]
  7. val sources: Vector[HashedSource]