Uses of Interface
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
 

Classes in org.atmosphere.container.version that implement WebSocket
 class GrizzlyWebSocket
           
 class Jetty8WebSocket
          Jetty 8 WebSocket support.
 class JettyWebSocket
          Jetty 7.1/2 & 8 < M3 WebSocket support.
 

Uses of WebSocket in org.atmosphere.websocket
 

Classes in org.atmosphere.websocket that implement WebSocket
 class WebSocketAdapter
          Simple class used to expose internal objects to WebSocket
 

Methods in org.atmosphere.websocket that return WebSocket
 WebSocket WebSocketProcessor.webSocket()
           
 WebSocket WebSocketEventListener.WebSocketEvent.webSocket()
          The WebSocket.
 

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

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

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.
 AtmosphereRequest SimpleHttpProtocol.onMessage(WebSocket webSocket, byte[] d, int offset, int length)
          Parse the WebSocket message, and delegate the processing to the AtmosphereServlet.cometSupport or to any existing technology.
 AtmosphereRequest EchoProtocol.onMessage(WebSocket webSocket, byte[] data, int offset, int length)
          Parse the WebSocket message, and delegate the processing to the AtmosphereServlet.cometSupport or to any existing technology.
 AtmosphereRequest SimpleHttpProtocol.onMessage(WebSocket webSocket, String d)
          Parse the WebSocket message, and delegate the processing to the AtmosphereServlet.cometSupport or to any existing technology.
 AtmosphereRequest EchoProtocol.onMessage(WebSocket webSocket, String data)
          Parse the WebSocket message, and delegate the processing to the AtmosphereServlet.cometSupport 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 © 2012. All Rights Reserved.