/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.cachepool; /** * <p> DefaultCacheLoader.java </p> * * @author Jon.King 2007-1-3 */ public class DefaultCacheLoader implements ICacheLoader { /* * 默认的缓存项加载器什么都不做 * @see com.jinpj.cachepool.extend.ICacheLoader#loadCacheObject(com.jinpj.cachepool.Cacheable) */ public Cacheable reloadCacheObject(Cacheable item) { return null; } }