Uses of Class
org.atmosphere.cpr.Action

Packages that use Action
org.atmosphere.client   
org.atmosphere.config.managed   
org.atmosphere.container   
org.atmosphere.cpr   
org.atmosphere.interceptor   
 

Uses of Action in org.atmosphere.client
 

Methods in org.atmosphere.client that return Action
 Action TrackMessageSizeInterceptor.inspect(AtmosphereResource r)
           
 

Uses of Action in org.atmosphere.config.managed
 

Methods in org.atmosphere.config.managed that return Action
 Action MeteorServiceInterceptor.inspect(AtmosphereResource r)
           
 Action ManagedServiceInterceptor.inspect(AtmosphereResource r)
           
 Action AtmosphereHandlerServiceInterceptor.inspect(AtmosphereResource r)
           
 

Uses of Action in org.atmosphere.container
 

Methods in org.atmosphere.container that return Action
 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 Grizzly2CometSupport.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 Tomcat7BIOSupportWithWebSocket.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, WebSocketProcessor webSocketProcessor)
           
 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 Tomcat7BIOSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Tomcat7AsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Servlet30CometSupport.service(AtmosphereRequest request, AtmosphereResponse response)
           
 Action NettyCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action JettyServlet30AsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action JettyCometSupport.service(AtmosphereRequest req, AtmosphereResponse response)
           
 Action JettyAsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Jetty9AsyncSupportWithWebSocket.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Jetty7CometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action JBossWebSocketSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action JBossWebCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Invoked by the Tomcat AIO when a Comet request gets detected.
 Action GrizzlyServlet30WebSocketSupport.service(AtmosphereRequest request, AtmosphereResponse response)
           
 Action GrizzlyCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Grizzly2WebSocketSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action Grizzly2CometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action GlassFishWebSocketSupport.service(AtmosphereRequest request, AtmosphereResponse response)
           
 Action GlassFishv2CometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
          Serve the AtmosphereRequest and the AtmosphereResponse and return the appropriate Action.
 Action GlassFishServlet30WebSocketSupport.service(AtmosphereRequest request, AtmosphereResponse response)
           
 Action GlassFishServ30WebSocketSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action BlockingIOCometSupport.service(AtmosphereRequest req, AtmosphereResponse res)
           
 Action TomcatWebSocketUtil.Delegate.suspended(AtmosphereRequest request, AtmosphereResponse response)
           
 

Methods in org.atmosphere.container with parameters of type Action
protected  void BlockingIOCometSupport.suspend(Action action, AtmosphereRequest req, AtmosphereResponse res)
          Suspend the connection by blocking the current Thread
 

Uses of Action in org.atmosphere.cpr
 

Fields in org.atmosphere.cpr declared as Action
static Action Action.CANCELLED
           
protected static Action AsynchronousProcessor.cancelledAction
           
static Action Action.CONTINUE
           
static Action Action.CREATED
           
static Action Action.DESTROYED
           
static Action Action.RESUME
           
static Action Action.SKIP_ATMOSPHEREHANDLER
           
static Action Action.SUSPEND
           
protected static Action AsynchronousProcessor.timedoutAction
           
 

Methods in org.atmosphere.cpr that return Action
 Action AtmosphereResourceImpl.action()
          Return the Action which represent the state of the response, e.g.
 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.
 Action AtmosphereFramework.doCometSupport(AtmosphereRequest req, AtmosphereResponse res)
          Invoke the proprietary AsyncSupport.
 Action AtmosphereInterceptorAdapter.inspect(AtmosphereResource r)
           
 Action AtmosphereInterceptor.inspect(AtmosphereResource r)
          Invoked before an AtmosphereResource gets dispatched to AtmosphereHandler.
 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 req, AtmosphereResponse res)
          All proprietary Comet based Servlet must invoke the timedout method when the underlying WebServer time out the AtmosphereResponse.
 Action Action.timeout(long timeout)
           
 Action Action.type(Action.TYPE type)
           
 

Uses of Action in org.atmosphere.interceptor
 

Methods in org.atmosphere.interceptor that return Action
 Action TrackMessageSizeB64Interceptor.inspect(AtmosphereResource r)
           
 Action SuspendTrackerInterceptor.inspect(AtmosphereResource r)
           
 Action SSEAtmosphereInterceptor.inspect(AtmosphereResource r)
           
 Action ShiroInterceptor.inspect(AtmosphereResource r)
           
 Action SessionCreationInterceptor.inspect(AtmosphereResource r)
           
 Action PaddingAtmosphereInterceptor.inspect(AtmosphereResource r)
           
 Action OnDisconnectInterceptor.inspect(AtmosphereResource r)
           
 Action NginxInterceptor.inspect(AtmosphereResource r)
           
 Action JSONPAtmosphereInterceptor.inspect(AtmosphereResource r)
           
 Action JavaScriptProtocol.inspect(AtmosphereResource r)
           
 Action HeartbeatInterceptor.inspect(AtmosphereResource r)
           
 Action DefaultHeadersInterceptor.inspect(AtmosphereResource r)
           
 Action CorsInterceptor.inspect(AtmosphereResource resource)
           
 Action BroadcastOnPostAtmosphereInterceptor.inspect(AtmosphereResource r)
           
 Action AtmosphereResourceStateRecovery.inspect(AtmosphereResource r)
           
 Action AtmosphereResourceLifecycleInterceptor.inspect(AtmosphereResource r)
          Automatically suspend the AtmosphereResource based on AtmosphereResource.TRANSPORT value.
 Action AndroidAtmosphereInterceptor.inspect(AtmosphereResource r)
           
 



Copyright © 2014. All Rights Reserved.