• Home
  • Raw
  • Download

Lines Matching refs:WebSocket

18  * This enumeration contains the types representing the WebSocket ready state
19 * and these states are based on the JavaScript WebSocket API specification.
35 * Ready state that the WebSocket connection is established and communication
53 * GetCloseCode(). Refer to RFC 6455, The WebSocket Protocol, for further
136 * server didn't return them in the response message of the WebSocket
183 * Create() creates a WebSocket instance.
186 * with the WebSocket.
188 * @return A <code>PP_Resource</code> corresponding to a WebSocket if
195 * WebSocket instance.
198 * WebSocket.
208 * Connect() connects to the specified WebSocket server. You can call this
212 * WebSocket.
214 * @param[in] url A <code>PP_Var</code> representing a WebSocket server URL.
233 * defined in the WebSocket API specification.
235 * WebSocket API specification.
254 * Close() closes the specified WebSocket connection by specifying
258 * WebSocket.
260 * @param[in] code The WebSocket close code. This is ignored if it is
269 * @param[in] reason A <code>PP_Var</code> representing the WebSocket
282 * in the WebSocket API specification.
285 * corresponds to an InvalidAccessError in the WebSocket API specification.
296 * ReceiveMessage() receives a message from the WebSocket server.
302 * WebSocket.
325 * SendMessage() sends a message to the WebSocket server.
328 * WebSocket.
339 * InvalidStateError in the WebSocket API specification.
343 * SyntaxError in the WebSocket API specification.
353 * messages that have been queued for the WebSocket connection to send, but
357 * WebSocket.
365 * GetCloseCode() returns the connection close code for the WebSocket
369 * WebSocket.
377 * GetCloseReason() returns the connection close reason for the WebSocket
381 * WebSocket.
392 * specified WebSocket connection.
395 * WebSocket.
407 * specified WebSocket connection.
410 * WebSocket.
421 * specified WebSocket connection.
424 * WebSocket.
434 * GetReadyState() returns the ready state of the specified WebSocket
438 * WebSocket.
448 * GetURL() returns the URL associated with specified WebSocket connection.
451 * WebSocket.