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

com.hc360.rsf.common.serialize.Serialization Maven / Gradle / Ivy

The newest version!

package com.hc360.rsf.common.serialize;

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

import com.hc360.rsf.common.URL;


/**
 * Serialization. (SPI, Singleton, ThreadSafe)
 * 
 */
public interface Serialization {

    /**
     * get content type id
     * 
     * @return content type id
     */
    byte getContentTypeId();

    /**
     * get content type
     * 
     * @return content type
     */
    String getContentType();

    /**
     * create serializer
     * @param url 
     * @param output
     * @return serializer
     * @throws IOException
     */
    ObjectOutput serialize(URL url, OutputStream output) throws IOException;

    /**
     * create deserializer
     * @param url 
     * @param input
     * @return deserializer
     * @throws IOException
     */
    ObjectInput deserialize(URL url, InputStream input) throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy