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

no.ks.kes.lib.EventSerdes.kt Maven / Gradle / Ivy

package no.ks.kes.lib

import kotlin.reflect.KClass

interface EventSerdes {
    fun deserialize(eventData: ByteArray, eventType: String): EventData<*>
    fun serialize(eventData: EventData<*>): ByteArray
    fun > getSerializationId(eventClass: KClass): String
    fun isJson() : Boolean = true
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy