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

net.razorvine.pickle.IObjectPickler Maven / Gradle / Ivy

There is a newer version: 4.4
Show newest version
package net.razorvine.pickle;

import java.io.IOException;
import java.io.OutputStream;

/**
 * Interface for Object Picklers used by the pickler, to pickle custom classes. 
 *
 * @author Irmen de Jong ([email protected])
 */
public interface IObjectPickler {
	/**
	 * Pickle an object.
	 */
	public void pickle(Object o, OutputStream out, Pickler currentPickler) throws PickleException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy