Uses of Class
org.atmosphere.cpr.AtmosphereRequest

Packages that use AtmosphereRequest
org.atmosphere.container   
org.atmosphere.cpr   
org.atmosphere.websocket   
org.atmosphere.websocket.protocol   
 

Uses of AtmosphereRequest in org.atmosphere.container
 

Methods in org.atmosphere.container with parameters of type AtmosphereRequest
 Action TomcatCometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Tomcat7CometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
 Action JettyCometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
 Action JBossWebCometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
 Action GrizzlyCometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
 Action GlassFishv2CometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
 Action BlockingIOCometSupport.cancelled(AtmosphereRequest req, AtmosphereResponse res)
           
static Action JettyWebSocketUtil.doService(AsynchronousProcessor cometSupport, AtmosphereRequest req, AtmosphereResponse res, org.eclipse.jetty.websocket.WebSocketFactory webSocketFactory)
           
 Action TomcatWebSocketUtil.Delegate.doService(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Tomcat7Servlet30SupportWithWebSocket.doService(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Tomcat7AsyncSupportWithWebSocket.doService(AtmosphereRequest req, AtmosphereResponse res)
           
static Action TomcatWebSocketUtil.doService(AtmosphereRequest req, AtmosphereResponse res, TomcatWebSocketUtil.Delegate delegate, AtmosphereConfig config)
           
 Action Jetty7CometSupport.resumed(AtmosphereRequest req, AtmosphereResponse res)
           
 Action TomcatCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Invoked by the Tomcat AIO when a Comet request gets detected.
 Action Tomcat7Servlet30SupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Tomcat7CometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Invoked by the Tomcat AIO when a Comet request gets detected.
 Action Tomcat7AsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Servlet30CometSupport.service(AtmosphereRequest request, AtmosphereResponse response)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action Servlet30AsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action NettyCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action JettyCometSupport.service(AtmosphereRequest req, AtmosphereResponse response)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action JettyAsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action Jetty7CometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action JBossWebCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Invoked by the Tomcat AIO when a Comet request gets detected.
 Action GrizzlyCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action GlassFishWebSocketSupport.service(AtmosphereRequest request, AtmosphereResponse response)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action GlassFishv2CometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action BlockingIOCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
protected  void BlockingIOCometSupport.suspend(Action action, AtmosphereRequest req, AtmosphereResponse res)
          Suspend the connection by blocking the current Thread
 Action TomcatWebSocketUtil.Delegate.suspended(AtmosphereRequest request, AtmosphereResponse response)
           
 

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()
           
static AtmosphereRequest AtmosphereRequest.create()
          Create an instance of this class without an associated HttpServletRequest
 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, boolean copySession)
          Copy the HttpServletRequest content inside an AtmosphereRequest.
 AtmosphereRequest AtmosphereRequest.method(String m)
           
 AtmosphereRequest AtmosphereRequest.pathInfo(String pathInfo)
           
 AtmosphereRequest AtmosphereResponse.request()
          Return the associated AtmosphereRequest
 AtmosphereRequest AtmosphereRequest.servletPath(String servletPath)
           
static AtmosphereRequest AtmosphereRequest.wrap(javax.servlet.http.HttpServletRequest request)
          Wrap an HttpServletRequest.
 

Methods in org.atmosphere.cpr with parameters of type AtmosphereRequest
 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)
           
 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 AtmosphereResponse.request(AtmosphereRequest atmosphereRequest)
          Set the associated AtmosphereRequest
 AtmosphereResponse.Builder AtmosphereResponse.Builder.request(AtmosphereRequest atmosphereRequest)
           
 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.
 Action AsyncSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action AsynchronousProcessor.suspended(AtmosphereRequest request, AtmosphereResponse response)
          All proprietary Comet based Servlet must invoke the suspended method when the first request comes in.
 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, AtmosphereRequest atmosphereRequest, boolean destroyable)
           
AtmosphereResponse(javax.servlet.http.HttpServletResponse r, AsyncIOWriter asyncIOWriter, AtmosphereRequest atmosphereRequest, boolean destroyable)
           
 

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.
 



Copyright © 2012. All Rights Reserved.