Uses of Class
org.atmosphere.websocket.WebSocket

Packages that use WebSocket
org.atmosphere.container.version   
org.atmosphere.websocket   
org.atmosphere.websocket.protocol   
 

Uses of WebSocket in org.atmosphere.container.version
 

Subclasses of WebSocket in org.atmosphere.container.version
 class Grizzly2WebSocket
           
 class GrizzlyWebSocket
           
 class Jetty8WebSocket
          Jetty 8 WebSocket support.
 class TomcatWebSocket
          Tomcat WebSocket Support
 

Methods in org.atmosphere.container.version that return WebSocket
 WebSocket TomcatWebSocket.flush(AtmosphereResponse r)
          No OPS
 WebSocket Jetty8WebSocket.flush(AtmosphereResponse r)
          No OPS
 WebSocket GrizzlyWebSocket.flush(AtmosphereResponse r)
          No OPS
 WebSocket Grizzly2WebSocket.flush(AtmosphereResponse r)
          No OPS
 WebSocket TomcatWebSocket.redirect(AtmosphereResponse r, String location)
           
 WebSocket Jetty8WebSocket.redirect(AtmosphereResponse r, String location)
          No OPS
 WebSocket GrizzlyWebSocket.redirect(AtmosphereResponse r, String location)
          No OPS
 WebSocket Grizzly2WebSocket.redirect(AtmosphereResponse r, String location)
          No OPS
 WebSocket TomcatWebSocket.write(AtmosphereResponse r, byte[] data)
          No OPS
 WebSocket Jetty8WebSocket.write(AtmosphereResponse r, byte[] data)
          No OPS
 WebSocket GrizzlyWebSocket.write(AtmosphereResponse r, byte[] data)
          No OPS
 WebSocket Grizzly2WebSocket.write(AtmosphereResponse r, byte[] data)
          No OPS
 WebSocket TomcatWebSocket.write(AtmosphereResponse r, byte[] data, int offset, int length)
          No OPS
 WebSocket Jetty8WebSocket.write(AtmosphereResponse r, byte[] data, int offset, int length)
          No OPS
 WebSocket GrizzlyWebSocket.write(AtmosphereResponse r, byte[] data, int offset, int length)
          No OPS
 WebSocket Grizzly2WebSocket.write(AtmosphereResponse r, byte[] data, int offset, int length)
          No OPS
 WebSocket TomcatWebSocket.write(AtmosphereResponse r, String data)
           
 WebSocket Jetty8WebSocket.write(AtmosphereResponse r, String data)
          No OPS
 WebSocket GrizzlyWebSocket.write(AtmosphereResponse r, String data)
          No OPS
 WebSocket Grizzly2WebSocket.write(AtmosphereResponse r, String data)
          No OPS
 WebSocket TomcatWebSocket.writeError(AtmosphereResponse r, int errorCode, String message)
           
 WebSocket Jetty8WebSocket.writeError(AtmosphereResponse r, int errorCode, String message)
          No OPS
 WebSocket GrizzlyWebSocket.writeError(AtmosphereResponse r, int errorCode, String message)
          No OPS
 WebSocket Grizzly2WebSocket.writeError(AtmosphereResponse r, int errorCode, String message)
          No OPS
 

Uses of WebSocket in org.atmosphere.websocket
 

Methods in org.atmosphere.websocket that return WebSocket
 WebSocket WebSocket.resource(AtmosphereResource r)
          Associate an AtmosphereResource to this WebSocket
 WebSocket WebSocketEventListener.WebSocketEvent.webSocket()
          The WebSocket.
 WebSocket WebSocket.webSocketResponseFilter(WebSocketResponseFilter w)
          Associate a WebSocketResponseFilter that will be invoked before any write operation.
 

Methods in org.atmosphere.websocket with parameters of type WebSocket
 void WebSocketProcessor.close(WebSocket webSocket, int closeCode)
          Invked when the WebServer is closing the native WebSocket
 void DefaultWebSocketProcessor.close(WebSocket webSocket, int closeCode)
          Invked when the WebServer is closing the native WebSocket
 void DefaultWebSocketProcessor.dispatch(WebSocket webSocket, AtmosphereRequest request, AtmosphereResponse r)
          Dispatch to request/response to the AsyncSupport implementation as it was a normal HTTP request.
 void WebSocketProcessor.invokeWebSocketProtocol(WebSocket webSocket, byte[] data, int offset, int length)
          Invoked when a WebSocket message gets received from the underlying container
 void DefaultWebSocketProcessor.invokeWebSocketProtocol(WebSocket webSocket, byte[] data, int offset, int length)
          Invoked when a WebSocket message gets received from the underlying container
 void WebSocketProcessor.invokeWebSocketProtocol(WebSocket webSocket, String webSocketMessage)
          Invoked when a WebSocket message gets received from the underlying container
 void DefaultWebSocketProcessor.invokeWebSocketProtocol(WebSocket webSocket, String webSocketMessage)
          Invoked when a WebSocket message gets received from the underlying container
 void WebSocketProcessor.notifyListener(WebSocket webSocket, WebSocketEventListener.WebSocketEvent webSocketEvent)
          Notify all WebSocketEventListener
 void DefaultWebSocketProcessor.notifyListener(WebSocket webSocket, WebSocketEventListener.WebSocketEvent event)
          Notify all WebSocketEventListener
 void WebSocketHandler.onByteMessage(WebSocket webSocket, byte[] data, int offset, int length)
          Invoked when a byte message is received.
 void WebSocketProtocol.onClose(WebSocket webSocket)
          Invoked when a WebSocket is closed
 void WebSocketHandler.onClose(WebSocket webSocket)
          Invoked when a WebSocket is closed.
 void WebSocketProtocol.onError(WebSocket webSocket, WebSocketProcessor.WebSocketException t)
          Invoked when an error occurs.
 void WebSocketHandler.onError(WebSocket webSocket, WebSocketProcessor.WebSocketException t)
          Invoked when a WebSocket produces an error.
 List<AtmosphereRequest> WebSocketProtocol.onMessage(WebSocket webSocket, byte[] data, int offset, int length)
          Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or to any existing technology.
 List<AtmosphereRequest> WebSocketHandler.onMessage(WebSocket webSocket, byte[] data, int offset, int length)
           
 List<AtmosphereRequest> WebSocketProtocol.onMessage(WebSocket webSocket, String data)
          Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or to any existing technology.
 List<AtmosphereRequest> WebSocketHandler.onMessage(WebSocket webSocket, String data)
           
 void WebSocketProtocol.onOpen(WebSocket webSocket)
          Invoked when a WebSocket is opened
 void WebSocketHandler.onOpen(WebSocket webSocket)
          Invoked when a WebSocket is opened.
 void WebSocketHandler.onTextMessage(WebSocket webSocket, String data)
          Invoked when a String message is received
 void WebSocketProcessor.open(WebSocket webSocket, AtmosphereRequest request)
          Invoked when a WebSocket gets opened by the underlying container
 void DefaultWebSocketProcessor.open(WebSocket webSocket, AtmosphereRequest request)
          Invoked when a WebSocket gets opened by the underlying container
 

Constructors in org.atmosphere.websocket with parameters of type WebSocket
WebSocketEventListener.WebSocketEvent(String message, WebSocketEventListener.WebSocketEvent.TYPE type, WebSocket webSocket)
           
 

Uses of WebSocket in org.atmosphere.websocket.protocol
 

Methods in org.atmosphere.websocket.protocol with parameters of type WebSocket
 void SimpleHttpProtocol.onClose(WebSocket webSocket)
          Invoked when a WebSocket is closed
 void EchoProtocol.onClose(WebSocket webSocket)
          Invoked when a WebSocket is closed
 void SimpleHttpProtocol.onError(WebSocket webSocket, WebSocketProcessor.WebSocketException t)
          Invoked when an error occurs.
 void EchoProtocol.onError(WebSocket webSocket, WebSocketProcessor.WebSocketException t)
          Invoked when an error occurs.
 List<AtmosphereRequest> SimpleHttpProtocol.onMessage(WebSocket webSocket, byte[] d, int offset, int length)
          Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or to any existing technology.
 List<AtmosphereRequest> EchoProtocol.onMessage(WebSocket webSocket, byte[] data, int offset, int length)
          Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or to any existing technology.
 List<AtmosphereRequest> SimpleHttpProtocol.onMessage(WebSocket webSocket, String d)
          Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or to any existing technology.
 List<AtmosphereRequest> EchoProtocol.onMessage(WebSocket webSocket, String data)
          Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or to any existing technology.
 void SimpleHttpProtocol.onOpen(WebSocket webSocket)
          Invoked when a WebSocket is opened
 void EchoProtocol.onOpen(WebSocket webSocket)
          Invoked when a WebSocket is opened
 



Copyright © 2013. All Rights Reserved.