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

ai.platon.pulsar.common.io.Writable.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package ai.platon.pulsar.common.io

import java.io.DataInput
import java.io.DataOutput
import java.io.IOException

interface Writable {
    @Throws(IOException::class)
    fun write(output: DataOutput)
    
    @Throws(IOException::class)
    fun readFields(input: DataInput)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy