org.eclipse.jetty.websocket.api.WebSocketListener Java Examples
The following examples show how to use
org.eclipse.jetty.websocket.api.WebSocketListener.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WebSocketHandler.java From purplejs with Apache License 2.0 | 4 votes |
private WebSocketListener doCreateWebSocket() { return this; }
Example #2
Source File: WebSocket.java From HtmlUnit-Android with Apache License 2.0 | 2 votes |
/** * Sets the {@link WebSocketListener}. * * @param listener the {@link WebSocketListener} */ public void setWebSocketListener(final WebSocketListener listener) { listener_ = listener; }
Example #3
Source File: WebSocket.java From HtmlUnit-Android with Apache License 2.0 | 2 votes |
/** * Returns the the {@link WebSocketListener}. * * @return the the {@link WebSocketListener} */ public WebSocketListener getWebSocketListener() { return listener_; }