com.healthy.common.websocket.session.SessionKeyGenerator Maven / Gradle / Ivy
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);
}