本文整理汇总了Java中org.apache.tomcat.websocket.WsSession类的典型用法代码示例。如果您正苦于以下问题:Java WsSession类的具体用法?Java WsSession怎么用?Java WsSession使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WsSession类属于org.apache.tomcat.websocket包,在下文中一共展示了WsSession类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: registerSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
/**
* {@inheritDoc}
*
* Overridden to make it visible to other classes in this package.
*/
@Override
protected void registerSession(Endpoint endpoint, WsSession wsSession) {
super.registerSession(endpoint, wsSession);
if (wsSession.isOpen() &&
wsSession.getUserPrincipal() != null &&
wsSession.getHttpSessionId() != null) {
registerAuthenticatedSession(wsSession,
wsSession.getHttpSessionId());
}
}
示例2: unregisterSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
/**
* {@inheritDoc}
*
* Overridden to make it visible to other classes in this package.
*/
@Override
protected void unregisterSession(Endpoint endpoint, WsSession wsSession) {
if (wsSession.getUserPrincipal() != null &&
wsSession.getHttpSessionId() != null) {
unregisterAuthenticatedSession(wsSession,
wsSession.getHttpSessionId());
}
super.unregisterSession(endpoint, wsSession);
}
示例3: registerAuthenticatedSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
private void registerAuthenticatedSession(WsSession wsSession,
String httpSessionId) {
Set<WsSession> wsSessions = authenticatedSessions.get(httpSessionId);
if (wsSessions == null) {
wsSessions = Collections.newSetFromMap(
new ConcurrentHashMap<WsSession,Boolean>());
authenticatedSessions.putIfAbsent(httpSessionId, wsSessions);
wsSessions = authenticatedSessions.get(httpSessionId);
}
wsSessions.add(wsSession);
}
示例4: unregisterAuthenticatedSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
private void unregisterAuthenticatedSession(WsSession wsSession,
String httpSessionId) {
Set<WsSession> wsSessions = authenticatedSessions.get(httpSessionId);
// wsSessions will be null if the HTTP session has ended
if (wsSessions != null) {
wsSessions.remove(wsSession);
}
}
示例5: closeAuthenticatedSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public void closeAuthenticatedSession(String httpSessionId) {
Set<WsSession> wsSessions = authenticatedSessions.remove(httpSessionId);
if (wsSessions != null && !wsSessions.isEmpty()) {
for (WsSession wsSession : wsSessions) {
try {
wsSession.close(AUTHENTICATED_HTTP_SESSION_CLOSED);
} catch (IOException e) {
// Any IOExceptions during close will have been caught and the
// onError method called.
}
}
}
}
示例6: registerSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
/**
* {@inheritDoc}
*
* Overridden to make it visible to other classes in this package.
*/
@Override
protected void registerSession(Endpoint endpoint, WsSession wsSession) {
super.registerSession(endpoint, wsSession);
if (wsSession.isOpen() && wsSession.getUserPrincipal() != null && wsSession.getHttpSessionId() != null) {
registerAuthenticatedSession(wsSession, wsSession.getHttpSessionId());
}
}
示例7: unregisterSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
/**
* {@inheritDoc}
*
* Overridden to make it visible to other classes in this package.
*/
@Override
protected void unregisterSession(Endpoint endpoint, WsSession wsSession) {
if (wsSession.getUserPrincipal() != null && wsSession.getHttpSessionId() != null) {
unregisterAuthenticatedSession(wsSession, wsSession.getHttpSessionId());
}
super.unregisterSession(endpoint, wsSession);
}
示例8: registerAuthenticatedSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
private void registerAuthenticatedSession(WsSession wsSession, String httpSessionId) {
Set<WsSession> wsSessions = authenticatedSessions.get(httpSessionId);
if (wsSessions == null) {
wsSessions = Collections.newSetFromMap(new ConcurrentHashMap<WsSession, Boolean>());
authenticatedSessions.putIfAbsent(httpSessionId, wsSessions);
wsSessions = authenticatedSessions.get(httpSessionId);
}
wsSessions.add(wsSession);
}
示例9: unregisterAuthenticatedSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
private void unregisterAuthenticatedSession(WsSession wsSession, String httpSessionId) {
Set<WsSession> wsSessions = authenticatedSessions.get(httpSessionId);
// wsSessions will be null if the HTTP session has ended
if (wsSessions != null) {
wsSessions.remove(wsSession);
}
}
示例10: closeAuthenticatedSession
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public void closeAuthenticatedSession(String httpSessionId) {
Set<WsSession> wsSessions = authenticatedSessions.remove(httpSessionId);
if (wsSessions != null && !wsSessions.isEmpty()) {
for (WsSession wsSession : wsSessions) {
try {
wsSession.close(AUTHENTICATED_HTTP_SESSION_CLOSED);
} catch (IOException e) {
// Any IOExceptions during close will have been caught and
// the
// onError method called.
}
}
}
}
示例11: WsFrameServer
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public WsFrameServer(AbstractServletInputStream sis, WsSession wsSession,
Transformation transformation) {
super(wsSession, transformation);
this.sis = sis;
}
示例12: WsFrameServer
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public WsFrameServer(AbstractServletInputStream sis, WsSession wsSession, Transformation transformation) {
super(wsSession, transformation);
this.sis = sis;
}
示例13: WsFrameServer
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public WsFrameServer(AbstractServletInputStream sis, WsSession wsSession) {
super(wsSession);
this.sis = sis;
}