|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use AtmosphereRequest | |
|---|---|
| org.atmosphere.container | |
| org.atmosphere.cpr | |
| org.atmosphere.util | |
| org.atmosphere.websocket | |
| org.atmosphere.websocket.protocol | |
| Uses of AtmosphereRequest in org.atmosphere.container |
|---|
| Constructors in org.atmosphere.container with parameters of type AtmosphereRequest | |
|---|---|
JettyWebSocketHandler(AtmosphereRequest request,
AtmosphereFramework framework,
WebSocketProtocol webSocketProtocol)
|
|
TomcatWebSocketHandler(AtmosphereRequest request,
AtmosphereFramework framework,
WebSocketProtocol webSocketProtocol)
|
|
| Uses of AtmosphereRequest in org.atmosphere.cpr |
|---|
| Fields in org.atmosphere.cpr with type parameters of type AtmosphereRequest | |
|---|---|
protected ConcurrentHashMap<AtmosphereRequest,AtmosphereResource> |
AsynchronousProcessor.aliveRequests
|
| Methods in org.atmosphere.cpr that return AtmosphereRequest | |
|---|---|
AtmosphereRequest |
AtmosphereRequest.body(String body)
|
AtmosphereRequest |
AtmosphereRequest.Builder.build()
|
AtmosphereRequest |
AtmosphereResponse.getRequest()
Return the associated AtmosphereRequest |
AtmosphereRequest |
AtmosphereResourceImpl.getRequest()
Return the underlying AtmosphereRequest Request. |
AtmosphereRequest |
AtmosphereResource.getRequest()
Return the underlying AtmosphereRequest Request. |
AtmosphereRequest |
AtmosphereResourceImpl.getRequest(boolean enforceScope)
|
AtmosphereRequest |
AtmosphereRequest.header(String name,
String value)
Add a header. |
AtmosphereRequest |
AtmosphereRequest.headers(Map<String,String> headers)
Add all headers contained with the Map. |
static AtmosphereRequest |
AtmosphereRequest.loadInMemory(javax.servlet.http.HttpServletRequest request,
boolean loadInMemory)
Copy the HttpServletRequest content inside an AtmosphereRequest. |
AtmosphereRequest |
AtmosphereRequest.method(String m)
|
static AtmosphereRequest |
AtmosphereRequest.wrap(javax.servlet.http.HttpServletRequest request)
Wrap an HttpServletRequest. |
| Methods in org.atmosphere.cpr with parameters of type AtmosphereRequest | |
|---|---|
AtmosphereFramework.Action |
AsynchronousProcessor.cancelled(AtmosphereRequest req,
AtmosphereResponse res)
All proprietary Comet based Servlet must invoke the cancelled
method when the underlying WebServer detect that the client closed
the connection. |
protected Map<String,String> |
AtmosphereFramework.configureQueryStringAsRequest(AtmosphereRequest request)
|
AtmosphereFramework.Action |
AtmosphereFramework.doCometSupport(AtmosphereRequest req,
AtmosphereResponse res)
Invoke the proprietary AsyncSupport |
protected boolean |
AtmosphereFramework.isIECandidate(AtmosphereRequest request)
|
protected AtmosphereFramework.AtmosphereHandlerWrapper |
AsynchronousProcessor.map(AtmosphereRequest req)
Return the AtmosphereHandler mapped to the passed servlet-path. |
AtmosphereResponse.Builder |
AtmosphereResponse.Builder.request(AtmosphereRequest atmosphereRequest)
|
AtmosphereFramework.Action |
AsynchronousProcessor.resumed(AtmosphereRequest request,
AtmosphereResponse response)
All proprietary Comet based Servlet must invoke the resume
method when the Atmosphere's application decide to resume the AtmosphereResponse. |
AtmosphereFramework.Action |
AsyncSupport.service(AtmosphereRequest req,
AtmosphereResponse res)
Serve the AtmosphereRequest and the AtmosphereResponse and return
the appropriate AtmosphereFramework.Action. |
AtmosphereFramework.Action |
AsynchronousProcessor.suspended(AtmosphereRequest request,
AtmosphereResponse response)
All proprietary Comet based Servlet must invoke the suspended
method when the first request comes in. |
AtmosphereFramework.Action |
AsynchronousProcessor.timedout(AtmosphereRequest request,
AtmosphereResponse response)
All proprietary Comet based Servlet must invoke the timedout
method when the underlying WebServer time out the AtmosphereResponse. |
| Constructors in org.atmosphere.cpr with parameters of type AtmosphereRequest | |
|---|---|
AtmosphereResourceImpl(AtmosphereConfig config,
Broadcaster broadcaster,
AtmosphereRequest req,
AtmosphereResponse response,
AsyncSupport asyncSupport,
AtmosphereHandler atmosphereHandler)
Create an AtmosphereResource. |
|
AtmosphereResponse(AsyncIOWriter asyncIOWriter,
AsyncProtocol asyncProtocol,
AtmosphereRequest atmosphereRequest,
boolean destroyable)
|
|
AtmosphereResponse(javax.servlet.http.HttpServletResponse r,
AsyncIOWriter asyncIOWriter,
AsyncProtocol asyncProtocol,
AtmosphereRequest atmosphereRequest,
boolean destroyable)
|
|
| Uses of AtmosphereRequest in org.atmosphere.util |
|---|
| Methods in org.atmosphere.util with parameters of type AtmosphereRequest | |
|---|---|
static boolean |
Utils.webSocketEnabled(AtmosphereRequest request)
|
| Uses of AtmosphereRequest in org.atmosphere.websocket |
|---|
| Methods in org.atmosphere.websocket that return types with arguments of type AtmosphereRequest | |
|---|---|
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. |
| Methods in org.atmosphere.websocket with parameters of type AtmosphereRequest | |
|---|---|
static Map<String,String> |
WebSocketProcessor.configureHeader(AtmosphereRequest request)
|
void |
WebSocketProcessor.dispatch(AtmosphereRequest request)
|
protected void |
WebSocketProcessor.dispatch(AtmosphereRequest request,
AtmosphereResponse r)
Dispatch to request/response to the AsyncSupport implementation as it was a normal HTTP request. |
| Uses of AtmosphereRequest in org.atmosphere.websocket.protocol |
|---|
| Methods in org.atmosphere.websocket.protocol that return types with arguments of type AtmosphereRequest | |
|---|---|
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||