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

csperandio.unifiedlog.events.Converter.kt Maven / Gradle / Ivy

The newest version!
package csperandio.unifiedlog.events

/**
 * Define how any object can be converted into byte array.
 */
interface Converter {
    /**
     * Convert an object into a byte array.
     *
     * @param o Object to convert
     * @return The byte array
     */
    fun convert(o: Any): ByteArray
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy