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

com.foxinmy.weixin4j.cache.Cacheable Maven / Gradle / Ivy

There is a newer version: 1.10.2
Show newest version
package com.foxinmy.weixin4j.cache;

import java.io.Serializable;

/**
 * 可缓存的对象
 *
 * @className Cacheable
 * @author jinyu([email protected])
 * @date 2016年5月26日
 * @since JDK 1.6
 * @see
 */
public interface Cacheable extends Serializable {
	/**
	 * 过期时间(单位:毫秒),值小于0时视为永不过期
	 *
	 * @return 缓存过期时间
	 */
	public long getExpires();

	/**
	 * 创建时间(单位:毫秒)
	 *
	 * @return 缓存对象创建时间
	 */
	public long getCreateTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy