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

com.landoop.lenses.lsql.serde.Deserializer Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.landoop.lenses.lsql.serde;

import org.apache.avro.generic.GenericRecord;

import java.io.Closeable;
import java.io.IOException;

public interface Deserializer extends Closeable {
    GenericRecord deserialize(byte[] bytes) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy