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

org.enodeframework.eventing.EventSerializer.kt Maven / Gradle / Ivy

package org.enodeframework.eventing

/**
 * Represents an event.
 */
interface EventSerializer {
    /**
     * Serialize the given events to map.
     */
    fun serialize(evnts: List): Map

    /**
     * Deserialize the given data to events.
     */
    fun deserialize(data: Map): List
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy