|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use AsyncSupport | |
|---|---|
| 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 | |
|---|---|
void |
AsyncSupportServiceProcessor.handle(AtmosphereFramework framework,
Class<AsyncSupport> annotatedClass)
|
| Uses of AsyncSupport in org.atmosphere.container |
|---|
| Classes in org.atmosphere.container that implement AsyncSupport | |
|---|---|
class |
BlockingIOCometSupport
This class is used when the AtmosphereFramework fails to autodetect
the Servlet Container we are running on. |
class |
GlassFishServ30WebSocketSupport
|
class |
GlassFishServlet30WebSocketSupport
Websocket Portable Runtime implementation on top of GlassFish 3.0.1 and up. |
class |
GlassFishv2CometSupport
Comet Portable Runtime implementation on top of Grizzly API included with GlassFish v2. |
class |
GlassFishWebSocketSupport
Websocket Portable Runtime implementation on top of GlassFish 3.0.1 and up. |
class |
Grizzly2CometSupport
Comet Portable Runtime implementation on top of Grizzly 1.5 and up. |
class |
Grizzly2WebSocketSupport
|
class |
GrizzlyCometSupport
Comet Portable Runtime implementation on top of Grizzly 1.5 and up. |
class |
GrizzlyServlet30WebSocketSupport
Websocket Portable Runtime implementation on top of GlassFish 3.0.1 and up. |
class |
JBossAsyncSupportWithWebSocket
JBoss's WebSocket support. |
class |
JBossWebCometSupport
Comet Portable Runtime implementation on top of Tomcat AIO. |
class |
JBossWebSocketSupport
JBoss AS7 websocket support based on Mike Brock's websockets implementation. |
class |
Jetty7CometSupport
Comet Portable Runtime implementation on top of Jetty's Continuation. |
class |
Jetty9AsyncSupportWithWebSocket
Jetty 9 WebSocket support. |
class |
JettyAsyncSupportWithWebSocket
WebSocket Portable Runtime implementation on top of Jetty's. |
class |
JettyCometSupport
Comet Portable Runtime implementation on top of Jetty's Continuation. |
class |
JettyServlet30AsyncSupportWithWebSocket
This class is the same as JettyAsyncSupportWithWebSocket implementation and add Websocket support
to Servlet 3.0. |
class |
JSR356AsyncSupport
|
class |
NettyCometSupport
Netty's Framework AsyncSupport and framework running on top of it, like vert.x and Play! |
class |
Servlet30CometSupport
This class is used when the AtmosphereFramework detect the container
detect Servlet 3.0 Asynch API. |
class |
Tomcat7AsyncSupportWithWebSocket
Tomcat's WebSocket support. |
class |
Tomcat7BIOSupportWithWebSocket
Tomcat's WebSocket support. |
class |
Tomcat7CometSupport
Comet Portable Runtime implementation on top of Tomcat AIO. |
class |
Tomcat7Servlet30SupportWithWebSocket
Tomcat's WebSocket support. |
class |
TomcatCometSupport
Comet Portable Runtime implementation on top of Tomcat AIO. |
class |
WebLogicServlet30WithWebSocket
|
| Methods in org.atmosphere.container that return AsyncSupport | |
|---|---|
AsyncSupport |
TomcatCometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
Tomcat7CometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
Servlet30CometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
NettyCometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
JettyCometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
Jetty7CometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
JBossWebCometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
GrizzlyCometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
Grizzly2CometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
GlassFishv2CometSupport.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
BlockingIOCometSupport.complete(AtmosphereResourceImpl r)
|
| Uses of AsyncSupport in org.atmosphere.cpr |
|---|
| Classes in org.atmosphere.cpr that implement AsyncSupport | |
|---|---|
class |
AsynchronousProcessor
Base class which implement the semantics of suspending and resuming of a Comet/WebSocket Request. |
| Fields in org.atmosphere.cpr declared as AsyncSupport | |
|---|---|
protected AsyncSupport |
AtmosphereResourceImpl.asyncSupport
|
protected AsyncSupport |
AtmosphereFramework.asyncSupport
|
| Methods in org.atmosphere.cpr that return AsyncSupport | |
|---|---|
AsyncSupport |
AsynchronousProcessor.complete(AtmosphereResourceImpl r)
|
AsyncSupport |
AsyncSupport.complete(E r)
Complete and close the connection associated with an implementation of AtmosphereResource |
AsyncSupport |
DefaultAsyncSupportResolver.defaultCometSupport(boolean preferBlocking)
This method is used to determine the default AsyncSupport if all else fails. |
AsyncSupport |
AtmosphereFramework.getAsyncSupport()
Return the current AsyncSupport. |
AsyncSupport |
AtmosphereFramework.getCometSupport()
Deprecated. Use getAsyncSupport |
AsyncSupport |
DefaultAsyncSupportResolver.newCometSupport(Class<? extends AsyncSupport> targetClass)
Given a Class of something that extends AsyncSupport, it tries to return an instance of that class. |
AsyncSupport |
DefaultAsyncSupportResolver.newCometSupport(String targetClassFQN)
|
AsyncSupport |
DefaultAsyncSupportResolver.resolve(boolean useNativeIfPossible,
boolean defaultToBlocking)
This method is the general interface to the outside world. |
AsyncSupport |
DefaultAsyncSupportResolver.resolve(boolean useNativeIfPossible,
boolean defaultToBlocking,
boolean useServlet30Async)
|
AsyncSupport |
AsyncSupportResolver.resolve(boolean useNativeIfPossible,
boolean defaultToBlocking,
boolean useWebsocketIfPossible)
|
protected AsyncSupport |
DefaultAsyncSupportResolver.resolveMultipleNativeSupportConflict(List<Class<? extends AsyncSupport>> available)
This method is called if there are more than one potential native container in scope. |
protected AsyncSupport |
DefaultAsyncSupportResolver.resolveNativeCometSupport(List<Class<? extends AsyncSupport>> available)
This method is called to determine which native comet support to the used. |
AsyncSupport |
DefaultAsyncSupportResolver.resolveWebSocket(List<Class<? extends AsyncSupport>> available)
|
| Methods in org.atmosphere.cpr that return types with arguments of type AsyncSupport | |
|---|---|
List<Class<? extends AsyncSupport>> |
DefaultAsyncSupportResolver.detectContainersPresent()
Returns a list of comet support by containers available on the classpath. |
List<Class<? extends AsyncSupport>> |
DefaultAsyncSupportResolver.detectWebSocketPresent(boolean useNativeIfPossible,
boolean useServlet30Async)
|
| Method parameters in org.atmosphere.cpr with type arguments of type AsyncSupport | |
|---|---|
AsyncSupport |
DefaultAsyncSupportResolver.newCometSupport(Class<? extends AsyncSupport> targetClass)
Given a Class of something that extends AsyncSupport, it tries to return an instance of that class. |
protected AsyncSupport |
DefaultAsyncSupportResolver.resolveMultipleNativeSupportConflict(List<Class<? extends AsyncSupport>> available)
This method is called if there are more than one potential native container in scope. |
protected AsyncSupport |
DefaultAsyncSupportResolver.resolveNativeCometSupport(List<Class<? extends AsyncSupport>> available)
This method is called to determine which native comet support to the used. |
AsyncSupport |
DefaultAsyncSupportResolver.resolveWebSocket(List<Class<? extends AsyncSupport>> available)
|
| Constructors in org.atmosphere.cpr with parameters of type AsyncSupport | |
|---|---|
AtmosphereResourceImpl(AtmosphereConfig config,
Broadcaster broadcaster,
AtmosphereRequest req,
AtmosphereResponse response,
AsyncSupport asyncSupport,
AtmosphereHandler atmosphereHandler)
Deprecated. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||