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

org.noear.solon.data.cache.Serializer Maven / Gradle / Ivy

There is a newer version: 3.0.0-RC
Show newest version
package org.noear.solon.data.cache;

/**
 * 对象序列化接口
 *
 * @author noear
 * @since 1.5
 * */
public interface Serializer {
    /**
     * 名称
     * */
    String name();
    /**
     * 序列化
     * */
    T serialize(Object obj) throws Exception ;
    /**
     * 反序列化
     * */
    Object deserialize(T dta) throws Exception ;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy