All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kernl.data.source.serialize.LongSerializer.kt Maven / Gradle / Ivy

Go to download

Kernl: A Kotlin Symbol Processing (KSP) library for automatic repository generation.

There is a newer version: 0.0.1-beta6
Show newest version
package io.github.mattshoe.shoebox.kernl.data.source.serialize

import java.nio.ByteBuffer

class LongSerializer: Serializer {
    override fun serialize(data: Long): ByteArray {
        return ByteBuffer.allocate(Long.SIZE_BYTES).putLong(data).array()
    }

    override fun deserialize(data: ByteArray): Long {
        return ByteBuffer.wrap(data).getLong()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy