abstract class Cache[F[_]] extends PlatformCache[F]
- Alphabetic
- By Inheritance
- Cache
- PlatformCache
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Cache()
Abstract Value Members
- abstract def ec: ExecutionContext
-
abstract
def
fetch: Fetch[F]
Method to fetch an Artifact.
Method to fetch an Artifact.
Note that this method tries all the coursier.cache.CachePolicy ies of this cache straightaway. During resolutions, you should prefer to try all repositories for the first policy, then the other policies if needed (in pseudo-code,
for (policy <- policies; repo <- repositories) …, rather thanfor (repo <- repositories, policy <- policies) …). You should use the fetchs method in that case. -
abstract
def
file(artifact: Artifact): EitherT[F, ArtifactError, File]
This method computes the task needed to get a file.
This method computes the task needed to get a file.
- Definition Classes
- PlatformCache
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fetchs: Seq[Fetch[F]]
Sequence of Fetch able to fetch an Artifact.
Sequence of Fetch able to fetch an Artifact.
Each element correspond to a coursier.cache.CachePolicy of this Cache. You may want to pass each of them to
coursier.core.ResolutionProcess.fetch().- returns
a non empty sequence
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def loggerOpt: Option[CacheLogger]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()