package mvc
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class Codec(charset: String)(encode: (String) => ByteString, decode: (ByteString) => String) extends Product with Serializable
A Codec handle the conversion of String to Byte arrays.
A Codec handle the conversion of String to Byte arrays.
- charset
The charset to be sent to the client.
- encode
The transformation function.