CacheStore

abstract class CacheStore extends Input with Output

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

Companion:
object
trait Output
trait Input
trait Closeable
trait AutoCloseable
class Object
trait Matchable
class Any

Value members

Abstract methods

def delete(): Unit

Delete the persisted information.

Delete the persisted information.

Inherited methods

@throws(java.io.IOException)
def close(): Unit
Inherited from:
Closeable
def read[T : JsonReader](default: => T): T
Inherited from:
Input
def read[T : JsonReader](): T
Inherited from:
Input
def write[T : JsonWriter](value: T): Unit
Inherited from:
Output