commonMain.serialize.Serializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yass2-core-jvm Show documentation
Show all versions of yass2-core-jvm Show documentation
Yet Another Service Solution
The newest version!
package ch.softappeal.yass2.serialize
public interface Writer {
public fun writeByte(byte: Byte)
public fun writeBytes(bytes: ByteArray)
}
public interface Reader {
public fun readByte(): Byte
public fun readBytes(length: Int): ByteArray
}
public interface Serializer {
public fun write(writer: Writer, value: Any?)
public fun read(reader: Reader): Any?
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy