Package

scalacache

serialization

Permalink

package serialization

Visibility
  1. Public
  2. All

Type Members

  1. trait BaseCodecs extends AnyRef

    Permalink

    Primitive type Codec instances

    Primitive type Codec instances

    Credit: Shade @ https://github.com/alexandru/shade/blob/master/src/main/scala/shade/memcached/Codec.scala

  2. trait Codec[T] extends AnyRef

    Permalink

    Represents a type class that needs to be implemented for serialization/deserialization to work.

    Represents a type class that needs to be implemented for serialization/deserialization to work.

    Annotations
    @implicitNotFound( ... )
  3. class GenericCodecObjectInputStream extends ObjectInputStream

    Permalink

    Object input stream which tries the thread local class loader.

    Object input stream which tries the thread local class loader.

    Thread Local class loader is used by SBT to avoid polluting system class loader when running different tasks.

    This allows deserialization of classes from sub-projects during something like Play's test/run modes.

  4. trait JavaSerializationCodec extends AnyRef

    Permalink

    Holds a Java-serialisation-based Codec[Object <: Serializable] instance

    Holds a Java-serialisation-based Codec[Object <: Serializable] instance

    Credit: Shade @ https://github.com/alexandru/shade/blob/master/src/main/scala/shade/memcached/Codec.scala

Value Members

  1. object Codec extends BaseCodecs

    Permalink

    For simple primitives, we provide lightweight Codecs for ease of use.

Ungrouped