codecs

final case class codecs(hintMask: HintMask) extends JsonCodecAPI
Companion:
object
trait Serializable
trait Product
trait Equals
trait CodecAPI
class Object
trait Matchable
class Any

Type members

Inherited types

type Cache = CompilationCache[JCodec]
Inherited from:
JsonCodecAPI
type Codec[A] = JCodec[A]
Inherited from:
JsonCodecAPI

Value members

Inherited methods

def compileCodec[A](schema0: Schema[A], cache: Cache): JCodec[A]

Turns a Schema into this API's preferred representation.

Turns a Schema into this API's preferred representation.

Value parameters:
cache

a Cache that can be used to optimise the compilation of Schemas into Codecs.

schema

the value's schema

Returns:

the codec associated to the A value.

Inherited from:
JsonCodecAPI
final def compileCodec[A](schema: Schema[A]): Codec[A]

Turns a Schema into this API's preferred representation.

Turns a Schema into this API's preferred representation.

Value parameters:
schema

the value's schema

Returns:

the codec associated to the A value.

Inherited from:
CodecAPI
Inherited from:
JsonCodecAPI
def decodeFromByteArray[A](codec: JCodec[A], bytes: Array[Byte]): Either[PayloadError, A]
Inherited from:
CodecAPI
override def decodeFromByteArrayPartial[A](codec: JCodec[A], bytes: Array[Byte]): Either[PayloadError, BodyPartial[A]]

Decodes partial data from a byte array

Decodes partial data from a byte array

Value parameters:
bytes

an byte array

codec

the implementation-specific codec type

Returns:

either a PayloadError, or the partial data, which can be combined with partial data coming from the metadata.

Definition Classes
JsonCodecAPI -> CodecAPI
Inherited from:
JsonCodecAPI
def decodeFromByteBuffer[A](codec: JCodec[A], bytes: ByteBuffer): Either[PayloadError, A]
Inherited from:
CodecAPI
override def decodeFromByteBufferPartial[A](codec: JCodec[A], bytes: ByteBuffer): Either[PayloadError, BodyPartial[A]]

Decodes partial data from a byte buffer, returning a function that is able to reconstruct the full data, provided a map resulting from the decoding of the metadata.

Decodes partial data from a byte buffer, returning a function that is able to reconstruct the full data, provided a map resulting from the decoding of the metadata.

Value parameters:
bytes

a bytue buffer

codec

the implementation-specific codec

Returns:

either a PayloadError, or the partial data, which can be combined with partial data coming from the metadata.

Definition Classes
JsonCodecAPI -> CodecAPI
Inherited from:
JsonCodecAPI
def mediaType[A](codec: JCodec[A]): Type
Inherited from:
JsonCodecAPI
Inherited from:
Product
override def writeToArray[A](codec: JCodec[A], value: A): Array[Byte]

Writes data to a byte array. Field values bound to http metadata (path/query/headers) must be eluded.

Writes data to a byte array. Field values bound to http metadata (path/query/headers) must be eluded.

Value parameters:
codec

the implementation-specific codec

value

the value to encode

Definition Classes
JsonCodecAPI -> CodecAPI
Inherited from:
JsonCodecAPI