本文整理汇总了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());
}
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:16,代码来源:WsServerContainer.java
示例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);
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:15,代码来源:WsServerContainer.java
示例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);
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:12,代码来源:WsServerContainer.java
示例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);
}
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:9,代码来源:WsServerContainer.java
示例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.
}
}
}
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:15,代码来源:WsServerContainer.java
示例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());
}
}
开发者ID:how2j,项目名称:lazycat,代码行数:13,代码来源:WsServerContainer.java
示例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);
}
开发者ID:how2j,项目名称:lazycat,代码行数:13,代码来源:WsServerContainer.java
示例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);
}
开发者ID:how2j,项目名称:lazycat,代码行数:10,代码来源:WsServerContainer.java
示例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);
}
}
开发者ID:how2j,项目名称:lazycat,代码行数:8,代码来源:WsServerContainer.java
示例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.
}
}
}
}
开发者ID:how2j,项目名称:lazycat,代码行数:16,代码来源:WsServerContainer.java
示例11: WsFrameServer
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public WsFrameServer(AbstractServletInputStream sis, WsSession wsSession,
Transformation transformation) {
super(wsSession, transformation);
this.sis = sis;
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:6,代码来源:WsFrameServer.java
示例12: WsFrameServer
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public WsFrameServer(AbstractServletInputStream sis, WsSession wsSession, Transformation transformation) {
super(wsSession, transformation);
this.sis = sis;
}
开发者ID:how2j,项目名称:lazycat,代码行数:5,代码来源:WsFrameServer.java
示例13: WsFrameServer
import org.apache.tomcat.websocket.WsSession; //导入依赖的package包/类
public WsFrameServer(AbstractServletInputStream sis, WsSession wsSession) {
super(wsSession);
this.sis = sis;
}
开发者ID:deathspeeder,项目名称:class-guard,代码行数:5,代码来源:WsFrameServer.java
注:本文中的org.apache.tomcat.websocket.WsSession类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论