Object/Class

coursier.cache

CachePolicy

Related Docs: class CachePolicy | package cache

Permalink

object CachePolicy extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CachePolicy
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object FetchMissing extends CachePolicy with Product with Serializable

    Permalink

    Pick local files, download the missing ones.

    Pick local files, download the missing ones.

    No updates are checked for files already downloaded.

  5. object ForceDownload extends CachePolicy with Product with Serializable

    Permalink

    (Re-)download all files.

    (Re-)download all files.

    Erases files already in cache.

  6. object LocalOnly extends CachePolicy with Product with Serializable

    Permalink

    Only pick local files, possibly from the cache.

    Only pick local files, possibly from the cache. Don't try to download anything.

  7. object LocalOnlyIfValid extends CachePolicy with Product with Serializable

    Permalink

    Only pick local files, possibly from the cache.

    Only pick local files, possibly from the cache. Don't return changing artifacts (whose last check is) older than TTL

  8. object LocalUpdate extends CachePolicy with Product with Serializable

    Permalink

    Only pick local files, check if any update is available for them, and download these if needed.

    Only pick local files, check if any update is available for them, and download these if needed.

    If no local file is found, *don't* try download it. Updates are only checked for files already in cache.

    Follows the TTL parameter (assumes no update is needed if the last one is recent enough).

    Unlike LocalUpdateChanging, all found local files are checked for updates, not just the changing ones.

  9. object LocalUpdateChanging extends CachePolicy with Product with Serializable

    Permalink

    Only pick local files.

    Only pick local files. If one of these local files corresponds to a changing artifact, check for updates, and download these if needed.

    If no local file is found, *don't* try download it. Updates are only checked for files already in cache.

    Follows the TTL parameter (assumes no update is needed if the last one is recent enough).

  10. object Update extends CachePolicy with Product with Serializable

    Permalink

    Pick local files, download the missing ones, check for updates and download those if any.

    Pick local files, download the missing ones, check for updates and download those if any.

    Follows the TTL parameter (assumes no update is needed if the last one is recent enough).

    Unlike UpdateChanging, all found local files are checked for updates, not just the changing ones.

  11. object UpdateChanging extends CachePolicy with Product with Serializable

    Permalink

    Pick local files, and download the missing ones.

    Pick local files, and download the missing ones.

    For changing ones, check for updates, and download those if any.

    Follows the TTL parameter (assumes no update is needed if the last one is recent enough).

  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped