Universal Marshaller
open class UniversalMarshaller<T : Any>(val _type: KClass<*>, val reader: (SerializationCtx, AbstractBuffer) -> T, val writer: (SerializationCtx, AbstractBuffer, T) -> Unit, val predefinedId: Int? = null) : IMarshaller<T>
Inheritors
Constructors
Link copied to clipboard
constructor(_type: KClass<*>, reader: (SerializationCtx, AbstractBuffer) -> T, writer: (SerializationCtx, AbstractBuffer, T) -> Unit, predefinedId: Int? = null)