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

com.github.ltsopensource.kv.serializer.StoreSerializer Maven / Gradle / Ivy

package com.github.ltsopensource.kv.serializer;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.Type;

/**
 * Robert HG ([email protected]) 12/5/15.
 */
public interface StoreSerializer {

    void serialize(Object value, OutputStream out) throws IOException;

     T deserialize(InputStream in, Type type) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy