encodeToSink

Serializes the value with serializer into a sink using JSON format and UTF-8 encoding.

Throws

if the given value cannot be serialized to JSON.

IOException

If an I/O error occurs and sink can't be written to.


inline fun <T> Json.encodeToSink(value: T, sink: Sink)(source)

Serializes given value to a sink using UTF-8 encoding and serializer retrieved from the reified type parameter.

Throws

if the given value cannot be serialized to JSON.

IOException

If an I/O error occurs and sink can't be written to.