Serde
Interface defining serialization and deserialization of concrete types.
For more info on the serialization stack, and how to customize it, see SerdeFactory.
Implementations MUST be thread safe.
You can create a custom one using using.
See also
Types
Properties
Functions
Link copied to clipboard
Content-type to use in request/responses.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun <T> using(serializer: ThrowingFunction<T, Array<Byte>>, deserializer: ThrowingFunction<Array<Byte>, T>): Serde<@NonNull T>
Like using, using content-type
application/octet-stream
.Link copied to clipboard