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

com.healthy.common.websocket.session.SessionKeyGenerator Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package com.healthy.common.websocket.session;

import org.springframework.web.socket.WebSocketSession;

/**
 * WebSocketSession 唯一标识生成器
 *
 * @author xm.z
 */
public interface SessionKeyGenerator {

	/**
	 * 获取当前session的唯一标识
	 * @param webSocketSession 当前session
	 * @return session唯一标识
	 */
	Object sessionKey(WebSocketSession webSocketSession);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy