|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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 |
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 |
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 |
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 |
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 |
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 |
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 |
| 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 |
WebSocketProcessor.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 |
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 an error occurs. |
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)
Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or
to any existing technology. |
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)
Parse the WebSocket message, and delegate the processing to the AtmosphereFramework.asyncSupport or
to any existing technology. |
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 |
| Constructors in org.atmosphere.websocket with parameters of type WebSocket | |
|---|---|
WebSocketEventListener.WebSocketEvent(String message,
WebSocketEventListener.WebSocketEvent.TYPE type,
WebSocket webSocket)
|
|
WebSocketProcessor(AtmosphereFramework framework,
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. |
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 |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||