mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
adjust the ReceiveNode docstrings
This commit is contained in:
@@ -93,7 +93,8 @@ module ClientWebSocket {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A handler that receives a message using the WebSocket API.
|
* A handler that receives a message using the WebSocket API.
|
||||||
* The "ws" library implements a superset of the WebSocket API, and this class therefore models both WebSocket and "ws".
|
* The WebSocket API is used both by the WebSocket library in browsers, and the same API is also implemented as part of the "ws" library.
|
||||||
|
* This class therefore models both the WebSocket library, and a subset of the "ws" library.
|
||||||
*/
|
*/
|
||||||
private class WebSocketReceiveNode extends ClientWebSocket::ReceiveNode {
|
private class WebSocketReceiveNode extends ClientWebSocket::ReceiveNode {
|
||||||
WebSocketReceiveNode() {
|
WebSocketReceiveNode() {
|
||||||
@@ -109,6 +110,7 @@ module ClientWebSocket {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A handler that receives a message using the API from the "ws" library.
|
* A handler that receives a message using the API from the "ws" library.
|
||||||
|
* The "ws" library additionally implements the WebSocket API, which is modeled in the `WebSocketReceiveNode` class.
|
||||||
*/
|
*/
|
||||||
private class WSReceiveNode extends ClientWebSocket::ReceiveNode {
|
private class WSReceiveNode extends ClientWebSocket::ReceiveNode {
|
||||||
WSReceiveNode () {
|
WSReceiveNode () {
|
||||||
|
|||||||
Reference in New Issue
Block a user