Uses of Interface
org.atmosphere.cpr.AsyncSupport
-
Packages that use AsyncSupport Package Description org.atmosphere.annotation org.atmosphere.container org.atmosphere.cpr -
-
Uses of AsyncSupport in org.atmosphere.annotation
Method parameters in org.atmosphere.annotation with type arguments of type AsyncSupport Modifier and Type Method Description voidAsyncSupportServiceProcessor. handle(AtmosphereFramework framework, java.lang.Class<AsyncSupport> annotatedClass) -
Uses of AsyncSupport in org.atmosphere.container
Classes in org.atmosphere.container that implement AsyncSupport Modifier and Type Class Description classBlockingIOCometSupportThis class is used when theAtmosphereFrameworkfails to autodetect the Servlet Container we are running on.classGlassFishServ30WebSocketSupportclassGlassFishServlet30WebSocketSupportWebsocket Portable Runtime implementation on top of GlassFish 3.0.1 and up.classGlassFishv2CometSupportComet Portable Runtime implementation on top of Grizzly API included with GlassFish v2.classGlassFishWebSocketSupportWebsocket Portable Runtime implementation on top of GlassFish 3.0.1 and up.classGrizzly2CometSupportComet Portable Runtime implementation on top of Grizzly 1.5 and up.classGrizzly2WebSocketSupportclassGrizzlyCometSupportComet Portable Runtime implementation on top of Grizzly 1.5 and up.classGrizzlyServlet30WebSocketSupportWebsocket Portable Runtime implementation on top of GlassFish 3.0.1 and up.classJBossAsyncSupportWithWebSocketJBoss's WebSocket support.classJBossWebCometSupportComet Portable Runtime implementation on top of Tomcat AIO.classJetty7CometSupportComet Portable Runtime implementation on top of Jetty's Continuation.classJetty93AsyncSupportWithWebSocketclassJetty9AsyncSupportWithWebSocketJetty 9 WebSocket support.classJettyAsyncSupportWithWebSocketWebSocket Portable Runtime implementation on top of Jetty's.classJettyCometSupportComet Portable Runtime implementation on top of Jetty's Continuation.classJettyServlet30AsyncSupportWithWebSocketThis class is the same asJettyAsyncSupportWithWebSocketimplementation and add Websocket support to Servlet 3.0.classJSR356AsyncSupportclassNettyCometSupportNetty's FrameworkAsyncSupportand framework running on top of it, like vert.x and Play!classServlet30CometSupportThis class is used when theAtmosphereFrameworkdetect the container detect Servlet 3.0 Asynch API.classTomcat7AsyncSupportWithWebSocketTomcat's WebSocket support.classTomcat7BIOSupportWithWebSocketTomcat's WebSocket support.classTomcat7CometSupportComet Portable Runtime implementation on top of Tomcat AIO.classTomcat7Servlet30SupportWithWebSocketTomcat's WebSocket support.classTomcatCometSupportComet Portable Runtime implementation on top of Tomcat AIO.classWebLogicServlet30WithWebSocketMethods in org.atmosphere.container that return AsyncSupport Modifier and Type Method Description AsyncSupportBlockingIOCometSupport. complete(AtmosphereResourceImpl r)AsyncSupportGlassFishv2CometSupport. complete(AtmosphereResourceImpl r)AsyncSupportGrizzly2CometSupport. complete(AtmosphereResourceImpl r)AsyncSupportGrizzlyCometSupport. complete(AtmosphereResourceImpl r)AsyncSupportJBossWebCometSupport. complete(AtmosphereResourceImpl r)AsyncSupportJetty7CometSupport. complete(AtmosphereResourceImpl r)AsyncSupportJettyCometSupport. complete(AtmosphereResourceImpl r)AsyncSupportNettyCometSupport. complete(AtmosphereResourceImpl r)AsyncSupportServlet30CometSupport. complete(AtmosphereResourceImpl r)AsyncSupportTomcat7CometSupport. complete(AtmosphereResourceImpl r)AsyncSupportTomcatCometSupport. complete(AtmosphereResourceImpl r) -
Uses of AsyncSupport in org.atmosphere.cpr
Classes in org.atmosphere.cpr that implement AsyncSupport Modifier and Type Class Description classAsynchronousProcessorBase class which implement the semantics of suspending and resuming of a Comet/WebSocket Request.Fields in org.atmosphere.cpr declared as AsyncSupport Modifier and Type Field Description protected AsyncSupportAtmosphereFramework. asyncSupportprotected AsyncSupportAtmosphereResourceImpl. asyncSupportMethods in org.atmosphere.cpr that return AsyncSupport Modifier and Type Method Description AsyncSupportAsynchronousProcessor. complete(AtmosphereResourceImpl r)AsyncSupportAsyncSupport. complete(E r)Complete and close the connection associated with an implementation ofAtmosphereResourceAsyncSupportDefaultAsyncSupportResolver. defaultCometSupport(boolean preferBlocking)This method is used to determine the default AsyncSupport if all else fails.AsyncSupportAtmosphereFramework. getAsyncSupport()Return the currentAsyncSupport.AsyncSupportAtmosphereFramework. getCometSupport()Deprecated.Use getAsyncSupportAsyncSupportDefaultAsyncSupportResolver. newCometSupport(java.lang.Class<? extends AsyncSupport> targetClass)Given a Class of something that extends AsyncSupport, it tries to return an instance of that class.AsyncSupportDefaultAsyncSupportResolver. newCometSupport(java.lang.String targetClassFQN)AsyncSupportAsyncSupportResolver. resolve(boolean useNativeIfPossible, boolean defaultToBlocking, boolean useWebsocketIfPossible)AsyncSupportDefaultAsyncSupportResolver. resolve(boolean useNativeIfPossible, boolean defaultToBlocking)This method is the general interface to the outside world.AsyncSupportDefaultAsyncSupportResolver. resolve(boolean useNativeIfPossible, boolean defaultToBlocking, boolean useServlet30Async)protected AsyncSupportDefaultAsyncSupportResolver. resolveMultipleNativeSupportConflict(java.util.List<java.lang.Class<? extends AsyncSupport>> available)This method is called if there are more than one potential native container in scope.protected AsyncSupportDefaultAsyncSupportResolver. resolveNativeCometSupport(java.util.List<java.lang.Class<? extends AsyncSupport>> available)This method is called to determine which native comet support to the used.AsyncSupportDefaultAsyncSupportResolver. resolveWebSocket(java.util.List<java.lang.Class<? extends AsyncSupport>> available)Methods in org.atmosphere.cpr that return types with arguments of type AsyncSupport Modifier and Type Method Description java.util.List<java.lang.Class<? extends AsyncSupport>>DefaultAsyncSupportResolver. detectContainersPresent()Returns a list of comet support by containers available on the classpath.java.util.List<java.lang.Class<? extends AsyncSupport>>DefaultAsyncSupportResolver. detectWebSocketPresent(boolean useNativeIfPossible, boolean useServlet30Async)Method parameters in org.atmosphere.cpr with type arguments of type AsyncSupport Modifier and Type Method Description AsyncSupportDefaultAsyncSupportResolver. newCometSupport(java.lang.Class<? extends AsyncSupport> targetClass)Given a Class of something that extends AsyncSupport, it tries to return an instance of that class.protected AsyncSupportDefaultAsyncSupportResolver. resolveMultipleNativeSupportConflict(java.util.List<java.lang.Class<? extends AsyncSupport>> available)This method is called if there are more than one potential native container in scope.protected AsyncSupportDefaultAsyncSupportResolver. resolveNativeCometSupport(java.util.List<java.lang.Class<? extends AsyncSupport>> available)This method is called to determine which native comet support to the used.AsyncSupportDefaultAsyncSupportResolver. resolveWebSocket(java.util.List<java.lang.Class<? extends AsyncSupport>> available)Constructors in org.atmosphere.cpr with parameters of type AsyncSupport Constructor Description AtmosphereResourceImpl(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest req, AtmosphereResponse response, AsyncSupport asyncSupport, AtmosphereHandler atmosphereHandler)Deprecated.
-