com.litongjava.tio.utils.cache.FirsthandCreater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
/**
*
*/
package com.litongjava.tio.utils.cache;
import java.io.Serializable;
/**
* 一手对象(即非缓存对象)创建者
* @author tanyaowu
*
*/
public interface FirsthandCreater {
/**
*
* @return
* @author tanyaowu
* @throws Exception
*/
public T create() throws Exception;
}