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

org.rcsb.mmtf.serialization.MmtfStructureSerializationInterface Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package org.rcsb.mmtf.serialization;

import java.io.InputStream;
import java.io.OutputStream;

import org.rcsb.mmtf.dataholders.MmtfStructure;

/**
 * An interface to carry out serializing / deserializing to {@link MmtfStructure}.
 * @author Anthony Bradley
 *
 */
public interface MmtfStructureSerializationInterface {

	/**
	 * Serialize an {@link MmtfStructure} to a generic output stream.
	 * @param mmtfStructure the compressed data
	 * @param outputStream the output stream to write to
	 */
	public void serialize(MmtfStructure mmtfStructure, OutputStream outputStream);
	
	/**
	 * Deserialize an {@link MmtfStructure} from an input stream.
	 * @param inputStream the inputstream to deserialize
	 * @return the compressed structure data.
	 */
	public MmtfStructure deserialize(InputStream inputStream);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy