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
- Alphabetic
- By Inheritance
Inherited
- UniqueCompileInputs
- Serializable
- Serializable
- Product
- Equals
- CacheHashCode
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new UniqueCompileInputs(sources: Vector[HashedSource], classpath: Vector[FileHash], options: Vector[String], scalaJars: Vector[String], originProjectPath: String)
Value Members
- val classpath: Vector[FileHash]
-
def
equals(other: Any): Boolean
- Definition Classes
- UniqueCompileInputs → Equals → AnyRef → Any
-
lazy val
hashCode: Int
Custom hash code that does not take into account ordering of
sources
andclasspath
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
andclasspath
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
- UniqueCompileInputs → CacheHashCode → AnyRef → Any
- val options: Vector[String]
- val originProjectPath: String
- val scalaJars: Vector[String]
- val sources: Vector[HashedSource]