package serialization
- Alphabetic
- Public
- All
Type Members
-
trait
BaseCodecs extends AnyRef
Primitive type Codec instances
Primitive type Codec instances
Credit: Shade @ https://github.com/alexandru/shade/blob/master/src/main/scala/shade/memcached/Codec.scala
-
trait
Codec[A] extends AnyRef
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( ... )
-
trait
GZippingBinaryCodec[A] extends Codec[A]
Mixing this into any Codec will automatically GZip the resulting Byte Array when serialising and handle un-Gzipping when deserialising
- class GZippingJavaAnyBinaryCodec[S <: Serializable] extends JavaSerializationAnyCodec[S] with GZippingBinaryCodec[S]
- sealed trait InMemoryRepr extends AnyRef
- class JavaSerializationAnyCodec[S <: Serializable] extends Codec[S]
-
trait
JavaSerializationCodec extends AnyRef
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
-
object
Codec extends BaseCodecs
For simple primitives, we provide lightweight Codecs for ease of use.
- object CompressingCodec
- object GZippingJavaAnyBinaryCodec