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

com.github.ltsopensource.remoting.serialize.RemotingSerializable Maven / Gradle / Ivy

package com.github.ltsopensource.remoting.serialize;


import com.github.ltsopensource.core.spi.SPI;
import com.github.ltsopensource.core.spi.SpiExtensionKey;

/**
 * @author Robert HG ([email protected]) on 11/6/15.
 */
@SPI(key = SpiExtensionKey.REMOTING_SERIALIZABLE_DFT, dftValue = "fastjson")
public interface RemotingSerializable {

    int getId();

    byte[] serialize(final Object obj) throws Exception;

     T deserialize(final byte[] data, Class clazz) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy