StreamBasedStore

class StreamBasedStore[J](inputStream: InputStream, outputStream: OutputStream, converter: SupportConverter[J])(implicit evidence$1: IsoString[J]) extends CacheStore

A store that reads from inputStream and writes to outputStream.

trait Output
trait Input
trait Closeable
trait AutoCloseable
class Object
trait Matchable
class Any

Value members

Concrete methods

def close(): Unit
def delete(): Unit
def read[T : JsonReader](): T
def write[T : JsonWriter](value: T): Unit

Inherited methods

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