ActionCacheStore

sbt.util.ActionCacheStore

An abstration of a remote or local cache store.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def get[A1 : JsonFormat](input: Digest): Option[ActionResult[A1]]

Get the value for the key from the cache store.

Get the value for the key from the cache store.

Attributes

def getBlobs(refs: Seq[HashedVirtualFileRef]): Seq[VirtualFile]

Get blobs from the cache store.

Get blobs from the cache store.

Attributes

def put[A1 : JsonFormat](actionDigest: Digest, value: A1, blobs: Seq[VirtualFile]): ActionResult[A1]

Put a value and blobs to the cache store for later retrieval, based on the actionDigest.

Put a value and blobs to the cache store for later retrieval, based on the actionDigest.

Attributes

def putBlobs(blobs: Seq[VirtualFile]): Seq[HashedVirtualFileRef]

Put VirtualFile blobs to the cache store for later retrieval.

Put VirtualFile blobs to the cache store for later retrieval.

Attributes

def syncBlobs(refs: Seq[HashedVirtualFileRef], outputDirectory: Path): Seq[Path]

Materialize blobs to the output directory.

Materialize blobs to the output directory.

Attributes