org.nutz.plugins.cache.CacheSerializer Maven / Gradle / Ivy
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