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

com.yuweix.kuafu.session.cache.SessionCache Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.session.cache;





/**
 * @author yuwei
 */
public interface SessionCache {
	/**
	 * timeout 有效期(单位:秒)。
	 */
	boolean put(String key, String value, long timeout);
	String get(String key);
	void remove(String key);

	/**
	 * session同步完成之后的操作
	 */
	default void afterCompletion(String sessionId) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy