KotlinxBinarySerializationHandler
data class KotlinxBinarySerializationHandler(format: BinaryFormat, contentType: String) : BaseSerializationHandler<ByteArray>
Content copied to clipboard
Kotlinx serialization handler that uses a BinaryFormat. Serializes arguments as a composite structure, as if they were properties in a class.
Constructors
Link copied to clipboard
fun KotlinxBinarySerializationHandler(format: BinaryFormat, contentType: String = byteArrayContentType)
Content copied to clipboard
Functions
Link copied to clipboard
open override fun deserializeArguments(arguments: ByteArray, serializers: ArgumentSerializers<ByteArray>): Map<String, *>
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun serializeArguments(arguments: Map<String, *>, serializers: ArgumentSerializers<ByteArray>): ByteArray
Content copied to clipboard