gpt4 book ai didi

org.apache.tomcat.websocket.WsSession.onClose()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-21 19:31:05 25 4
gpt4 key购买 nike

本文整理了Java中org.apache.tomcat.websocket.WsSession.onClose()方法的一些代码示例,展示了WsSession.onClose()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WsSession.onClose()方法的具体详情如下:
包路径:org.apache.tomcat.websocket.WsSession
类名称:WsSession
方法名:onClose

WsSession.onClose介绍

[英]Called when a close message is received. Should only ever happen once. Also called after a protocol error when the ProtocolHandler needs to force the closing of the connection.
[中]收到关闭消息时调用。应该只发生一次。当ProtocolHandler需要强制关闭连接时,也在协议错误后调用。

代码示例

代码示例来源:origin: org.apache.tomcat.embed/tomcat-embed-websocket

private void close(CloseReason cr) {
  /*
   * Any call to this method is a result of a problem reading from the
   * client. At this point that state of the connection is unknown.
   * Attempt to send a close frame to the client and then close the socket
   * immediately. There is no point in waiting for a close frame from the
   * client because there is no guarantee that we can recover from
   * whatever messed up state the client put the connection into.
   */
  wsSession.onClose(cr);
}

代码示例来源:origin: codefollower/Tomcat-Research

private void close(CloseReason cr) {
  /*
   * Any call to this method is a result of a problem reading from the
   * client. At this point that state of the connection is unknown.
   * Attempt to send a close frame to the client and then close the socket
   * immediately. There is no point in waiting for a close frame from the
   * client because there is no guarantee that we can recover from
   * whatever messed up state the client put the connection into.
   */
  wsSession.onClose(cr);
}

代码示例来源:origin: org.apache.tomcat/tomcat7-websocket

private void close(CloseReason cr) {
  /*
   * Any call to this method is a result of a problem reading from the
   * client. At this point that state of the connection is unknown.
   * Attempt to send a close frame to the client and then close the socket
   * immediately. There is no point in waiting for a close frame from the
   * client because there is no guarantee that we can recover from
   * whatever messed up state the client put the connection into.
   */
  wsSession.onClose(cr);
}

代码示例来源:origin: org.apache.tomcat/tomcat-websocket

private void close(CloseReason cr) {
  /*
   * Any call to this method is a result of a problem reading from the
   * client. At this point that state of the connection is unknown.
   * Attempt to send a close frame to the client and then close the socket
   * immediately. There is no point in waiting for a close frame from the
   * client because there is no guarantee that we can recover from
   * whatever messed up state the client put the connection into.
   */
  wsSession.onClose(cr);
}

代码示例来源:origin: org.jboss.web/jbossweb

private void close(CloseReason cr) {
  /*
   * Any call to this method is a result of a problem reading from the
   * client. At this point that state of the connection is unknown.
   * Attempt to send a close frame to the client and then close the socket
   * immediately. There is no point in waiting for a close frame from the
   * client because there is no guarantee that we can recover from
   * whatever messed up state the client put the connection into.
   */
  wsSession.onClose(cr);
}

代码示例来源:origin: Red5/red5-plugins

private void close(CloseReason cr) {
  /*
   * Any call to this method is a result of a problem reading from the client. At this point that state of the connection is unknown.
   * Attempt to send a close frame to the client and then close the socket immediately. There is no point in waiting for a close frame from the
   * client because there is no guarantee that we can recover from whatever messed up state the client put the connection into.
   */
  wsSession.onClose(cr);
}

代码示例来源:origin: org.apache.tomcat/tomcat-websocket

wsSession.onClose(new CloseReason(Util.getCloseCode(code), reason));
} else if (opCode == Constants.OPCODE_PING) {
  if (wsSession.isOpen()) {

代码示例来源:origin: org.apache.tomcat.embed/tomcat-embed-websocket

wsSession.onClose(new CloseReason(Util.getCloseCode(code), reason));
} else if (opCode == Constants.OPCODE_PING) {
  if (wsSession.isOpen()) {

代码示例来源:origin: org.apache.tomcat/tomcat7-websocket

wsSession.onClose(new CloseReason(Util.getCloseCode(code), reason));
} else if (opCode == Constants.OPCODE_PING) {
  if (wsSession.isOpen()) {

代码示例来源:origin: org.jboss.web/jbossweb

wsSession.onClose(new CloseReason(Util.getCloseCode(code), reason));
} else if (opCode == Constants.OPCODE_PING) {
  if (wsSession.isOpen()) {

代码示例来源:origin: codefollower/Tomcat-Research

wsSession.onClose(new CloseReason(Util.getCloseCode(code), reason));
} else if (opCode == Constants.OPCODE_PING) {
  if (wsSession.isOpen()) {

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com