kernl.data.source.serialize.ShortSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Kernl.Runtime Show documentation
Show all versions of Kernl.Runtime Show documentation
Kernl: A Kotlin Symbol Processing (KSP) library for automatic repository generation.
package io.github.mattshoe.shoebox.kernl.data.source.serialize
import java.nio.ByteBuffer
class ShortSerializer: Serializer {
override fun serialize(data: Short): ByteArray {
return ByteBuffer.allocate(Short.SIZE_BYTES).putShort(data).array()
}
override fun deserialize(data: ByteArray): Short {
return ByteBuffer.wrap(data).getShort()
}
}