Uses of Class
com.facilita.fc.web.WebSocket
-
Packages that use WebSocket Package Description com.facilita.fc.web The eggPlant Performance Web Java API makes it easy to perform load tests against web sites and services, by providing classes and methods that simulate the behaviour of a web browser sending/receiving HTTP(s) requests to/from a web server. -
-
Uses of WebSocket in com.facilita.fc.web
Methods in com.facilita.fc.web that return WebSocket Modifier and Type Method Description WebSocket
WebBrowser. createWebSocket(Url url, int reference)
Creates aWebSocket
object that can be used to send/receive WebSocket messages to/from the web server.Methods in com.facilita.fc.web with parameters of type WebSocket Modifier and Type Method Description static long
WebSocket. getCPtr(WebSocket obj)
For internal use only.void
WebSocketClosedCallback. onClosed(WebSocket webSocket, boolean closedByClient, java.lang.String reason)
The method that is invoked when aWebSocket
is closed.void
WebSocketErrorCallback. onError(WebSocket webSocket, java.lang.String errorMessage)
The method that is invoked when an error occurs on aWebSocket
void
WebSocketReceivedMessageCallback. onReceivedMessage(WebSocket webSocket, WebSocketMessage message)
The method that is invoked when a WebSocket message arrives from the server.Constructors in com.facilita.fc.web with parameters of type WebSocket Constructor Description WebSocketMessageQueue(WebSocket webSocket)
Creates a new WebSocketMessageQueue instance to wait for messages on a particularWebSocket
.
-