CacheStore

sbt.util.CacheStore
See theCacheStore companion object
abstract class CacheStore extends Input, Output

A CacheStore is used by the caching infrastructure to persist cached information.

Attributes

Companion
object
Graph
Supertypes
trait Output
trait Input
trait Closeable
trait AutoCloseable
class Object
trait Matchable
class Any
Show all
Known subtypes
class FileBasedStore[J]
class StreamBasedStore[J]

Members list

Value members

Abstract methods

def delete(): Unit

Delete the persisted information.

Delete the persisted information.

Attributes

Inherited methods

def close(): Unit

Attributes

Inherited from:
Closeable
def read[T : JsonReader](default: => T): T

Attributes

Inherited from:
Input
def read[T : JsonReader](): T

Attributes

Inherited from:
Input
def write[T : JsonWriter](value: T): Unit

Attributes

Inherited from:
Output