当前位置: 首页>>代码示例>>Java>>正文


Java CloseReason.getReasonPhrase方法代码示例

本文整理汇总了Java中javax.websocket.CloseReason.getReasonPhrase方法的典型用法代码示例。如果您正苦于以下问题:Java CloseReason.getReasonPhrase方法的具体用法?Java CloseReason.getReasonPhrase怎么用?Java CloseReason.getReasonPhrase使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.websocket.CloseReason的用法示例。


在下文中一共展示了CloseReason.getReasonPhrase方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: sendCloseMessage

import javax.websocket.CloseReason; //导入方法依赖的package包/类
private void sendCloseMessage(CloseReason closeReason) {
    // 125 is maximum size for the payload of a control message
    ByteBuffer msg = ByteBuffer.allocate(125);
    CloseCode closeCode = closeReason.getCloseCode();
    // CLOSED_ABNORMALLY should not be put on the wire
    if (closeCode == CloseCodes.CLOSED_ABNORMALLY) {
        // PROTOCOL_ERROR is probably better than GOING_AWAY here
        msg.putShort((short) CloseCodes.PROTOCOL_ERROR.getCode());
    } else {
        msg.putShort((short) closeCode.getCode());
    }

    String reason = closeReason.getReasonPhrase();
    if (reason != null && reason.length() > 0) {
        appendCloseReasonWithTruncation(msg, reason);
    }
    msg.flip();
    try {
        wsRemoteEndpoint.startMessageBlock(Constants.OPCODE_CLOSE, msg, true);
    } catch (IOException ioe) {
        handleCloseException(ioe, closeCode);
    } catch (WritePendingException wpe) {
        handleCloseException(wpe, closeCode);
    } finally {
        webSocketContainer.unregisterSession(localEndpoint, this);
    }
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:28,代码来源:WsSession.java

示例2: sendCloseMessage

import javax.websocket.CloseReason; //导入方法依赖的package包/类
private void sendCloseMessage(CloseReason closeReason) {
	// 125 is maximum size for the payload of a control message
	ByteBuffer msg = ByteBuffer.allocate(125);
	CloseCode closeCode = closeReason.getCloseCode();
	// CLOSED_ABNORMALLY should not be put on the wire
	if (closeCode == CloseCodes.CLOSED_ABNORMALLY) {
		// PROTOCOL_ERROR is probably better than GOING_AWAY here
		msg.putShort((short) CloseCodes.PROTOCOL_ERROR.getCode());
	} else {
		msg.putShort((short) closeCode.getCode());
	}

	String reason = closeReason.getReasonPhrase();
	if (reason != null && reason.length() > 0) {
		appendCloseReasonWithTruncation(msg, reason);
	}
	msg.flip();
	try {
		wsRemoteEndpoint.startMessageBlock(Constants.OPCODE_CLOSE, msg, true);
	} catch (IOException ioe) {
		handleCloseException(ioe, closeCode);
	} catch (WritePendingException wpe) {
		handleCloseException(wpe, closeCode);
	} finally {
		webSocketContainer.unregisterSession(localEndpoint, this);
	}
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:28,代码来源:WsSession.java


注:本文中的javax.websocket.CloseReason.getReasonPhrase方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。