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

org.nutz.plugins.cache.CacheSerializer Maven / Gradle / Ivy

There is a newer version: 1.r.69.v20220215
Show newest version
package org.nutz.plugins.cache;

/**
 * 缓存序列化器, 实现类必须是线程安全的
 * @author wendal([email protected])
 *
 */
public interface CacheSerializer {
    
    /**
     * 如果对象无法序列化,返回null
     */
    Object fromObject(Object obj);
    
    /**
     * 要求: 如果对象无法还原,返回null
     */
    Object toObject(Object obj);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy