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

bboss.org.jgroups.util.Streamable Maven / Gradle / Ivy

The newest version!
package bboss.org.jgroups.util;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;

/**
 * Implementations of Streamable can add their state directly to the output stream, enabling them to bypass costly
 * serialization
 * @author Bela Ban
 * @version $Id: Streamable.java,v 1.2 2005/07/25 16:21:47 belaban Exp $
 */
public interface Streamable {

    /** Write the entire state of the current object (including superclasses) to outstream.
     * Note that the output stream must not be closed */
    void writeTo(DataOutputStream out) throws IOException;

    /** Read the state of the current object (including superclasses) from instream
     * Note that the input stream must not be closed */
    void readFrom(DataInputStream in) throws IOException, IllegalAccessException, InstantiationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy