Uses of Class
org.atmosphere.cpr.AtmosphereFramework

Packages that use AtmosphereFramework
org.atmosphere.annotation   
org.atmosphere.container   
org.atmosphere.cpr   
org.atmosphere.websocket   
 

Uses of AtmosphereFramework in org.atmosphere.annotation
 

Methods in org.atmosphere.annotation with parameters of type AtmosphereFramework
static void AnnotationUtil.atmosphereConfig(String[] m, AtmosphereFramework framework)
           
static Broadcaster AnnotationUtil.broadcaster(AtmosphereFramework framework, Class<? extends Broadcaster> broadcaster, String path)
           
static Class<? extends Broadcaster> AnnotationUtil.broadcasterClass(AtmosphereFramework framework, Class<? extends Broadcaster> broadcaster)
           
static void AnnotationUtil.filters(Class<? extends BroadcastFilter>[] bf, AtmosphereFramework framework)
           
 void AsyncSupportServiceProcessor.handle(AtmosphereFramework framework, Class<AsyncSupport> annotatedClass)
           
 void AsyncSupportListenerServiceProcessor.handle(AtmosphereFramework framework, Class<AsyncSupportListener> annotatedClass)
           
 void AtmosphereHandlerServiceProcessor.handle(AtmosphereFramework framework, Class<AtmosphereHandler> annotatedClass)
           
 void AtmosphereInterceptorServiceProcessor.handle(AtmosphereFramework framework, Class<AtmosphereInterceptor> annotatedClass)
           
 void BroadcasterServiceProcessor.handle(AtmosphereFramework framework, Class<Broadcaster> annotatedClass)
           
 void BroadcasterCacheServiceProcessor.handle(AtmosphereFramework framework, Class<BroadcasterCache> annotatedClass)
           
 void BroadcasterCacheInspectorServiceProcessor.handle(AtmosphereFramework framework, Class<BroadcasterCache> annotatedClass)
           
 void BroadcasterCacheListenererviceProcessor.handle(AtmosphereFramework framework, Class<BroadcasterCacheListener> annotatedClass)
           
 void BroadcasterFactoryServiceProcessor.handle(AtmosphereFramework framework, Class<BroadcasterFactory> annotatedClass)
           
 void BroadcasterListenerServiceProcessor.handle(AtmosphereFramework framework, Class<BroadcasterListener> annotatedClass)
           
 void BroadcastFilterServiceProcessor.handle(AtmosphereFramework framework, Class<BroadcastFilter> annotatedClass)
           
 void EndpointMapperServiceProcessor.handle(AtmosphereFramework framework, Class<EndpointMapper> annotatedClass)
           
 void ManagedServiceProcessor.handle(AtmosphereFramework framework, Class<Object> annotatedClass)
           
 void AtmosphereServiceProcessor.handle(AtmosphereFramework framework, Class<Object> annotatedClass)
           
 void MeteorServiceProcessor.handle(AtmosphereFramework framework, Class<javax.servlet.Servlet> annotatedClass)
           
 void Processor.handle(AtmosphereFramework framework, Class<T> annotatedClass)
          Invoked by the AnnotationHandler when an annotation is detected.
 void WebSocketHandlerServiceProcessor.handle(AtmosphereFramework framework, Class<WebSocketHandler> annotatedClass)
           
 void WebSocketProcessorServiceProcessor.handle(AtmosphereFramework framework, Class<WebSocketProcessor> annotatedClass)
           
 void WebSocketProtocolServiceProcessor.handle(AtmosphereFramework framework, Class<WebSocketProtocol> annotatedClass)
           
static void AnnotationUtil.interceptors(Class<? extends AtmosphereInterceptor>[] interceptors, AtmosphereFramework framework)
           
static AtmosphereInterceptor AnnotationUtil.listeners(Class<? extends AtmosphereResourceEventListener>[] listeners, AtmosphereFramework framework)
           
 

Uses of AtmosphereFramework in org.atmosphere.container
 

Constructors in org.atmosphere.container with parameters of type AtmosphereFramework
EmbeddedWebSocketHandler(AtmosphereFramework framework)
           
Jetty9WebSocketHandler(javax.servlet.http.HttpServletRequest request, AtmosphereFramework framework, WebSocketProcessor webSocketProcessor)
           
JettyWebSocketHandler(AtmosphereRequest request, AtmosphereFramework framework, WebSocketProcessor webSocketProcessor)
           
JSR356AsyncSupport.AtmosphereConfigurator(AtmosphereFramework framework)
           
JSR356Endpoint(AtmosphereFramework framework, WebSocketProcessor webSocketProcessor)
           
TomcatWebSocketHandler(AtmosphereRequest request, AtmosphereFramework framework, WebSocketProcessor webSocketProcessor)
           
 

Uses of AtmosphereFramework in org.atmosphere.cpr
 

Fields in org.atmosphere.cpr declared as AtmosphereFramework
protected  AtmosphereFramework AtmosphereServlet.framework
           
 

Methods in org.atmosphere.cpr that return AtmosphereFramework
 AtmosphereFramework AtmosphereFramework.addAnnotationPackage(Class<?> clazz)
          Add support for package detection of Atmosphere's Component.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h)
          Add an AtmosphereHandler serviced by the Servlet This API is exposed to allow embedding an Atmosphere application.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, Broadcaster broadcaster)
          Add an AtmosphereHandler serviced by the Servlet.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, Broadcaster broadcaster, List<AtmosphereInterceptor> l)
          Add an AtmosphereHandler serviced by the Servlet.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, List<AtmosphereInterceptor> l)
          Add an AtmosphereHandler serviced by the Servlet This API is exposed to allow embedding an Atmosphere application.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, String broadcasterId)
          Add an AtmosphereHandler serviced by the Servlet.
 AtmosphereFramework AtmosphereFramework.addAtmosphereHandler(String mapping, AtmosphereHandler h, String broadcasterId, List<AtmosphereInterceptor> l)
          Add an AtmosphereHandler serviced by the Servlet.
 AtmosphereFramework AtmosphereFramework.addBroadcasterCacheInjector(BroadcasterCacheInspector b)
          Add a BroadcasterCacheInspector which will be associated with the defined BroadcasterCache.
 AtmosphereFramework AtmosphereFramework.addBroadcasterCacheListener(BroadcasterCacheListener b)
          Add BroadcasterCacheListener to the BroadcasterCache.
 AtmosphereFramework AtmosphereFramework.addBroadcasterListener(BroadcasterListener b)
          Add BroadcasterListener to all created Broadcasters.
 AtmosphereFramework AtmosphereFramework.addBroadcasterType(String broadcasterTypeString)
          Add a new Broadcaster class name that AtmosphereServlet can use when initializing requests, and when the atmosphere.xml broadcaster element is unspecified.
 AtmosphereFramework AtmosphereFramework.addCustomAnnotationPackage(Class p)
          Add a package containing classes annotated with AtmosphereAnnotation.
 AtmosphereFramework AtmosphereFramework.addInitParameter(String name, String value)
          Add init-param like if they were defined in web.xml
 AtmosphereFramework AtmosphereFramework.addWebSocketHandler(String path, WebSocketHandler handler)
          Add an WebSocketHandler mapped to the path.
 AtmosphereFramework AtmosphereFramework.addWebSocketHandler(String path, WebSocketHandler handler, AtmosphereHandler h)
          Add an WebSocketHandler mapped to the path and the AtmosphereHandler in case Broadcaster are used.
 AtmosphereFramework AtmosphereFramework.addWebSocketHandler(String path, WebSocketHandler handler, AtmosphereHandler h, List<AtmosphereInterceptor> l)
          Add an WebSocketHandler mapped to the path and the AtmosphereHandler in case Broadcaster are used.
 AtmosphereFramework AtmosphereFramework.addWebSocketHandler(WebSocketHandler handler)
          Add an WebSocketHandler mapped to "/*".
 AtmosphereFramework AtmosphereFramework.allowAllClassesScan(boolean allowAllClassesScan)
           
 AtmosphereFramework AtmosphereFramework.annotationProcessorClassName(String annotationProcessorClassName)
          Set the AnnotationProcessor class name.
 AtmosphereFramework AtmosphereFramework.annotationScanned(boolean b)
          Invoked when a AnnotationProcessor found an annotation.
 AtmosphereFramework AtmosphereFramework.asyncSupportListener(AsyncSupportListener asyncSupportListener)
          Add an AsyncSupportListener.
 AtmosphereFramework AtmosphereFramework.broadcasterFilters(BroadcastFilter f)
          Add a BroadcastFilter.
 AtmosphereFramework AtmosphereFramework.broadcasterLifeCyclePolicy(String broadcasterLifeCyclePolicy)
           
 AtmosphereFramework AtmosphereFramework.configureRequestResponse(AtmosphereRequest req, AtmosphereResponse res)
          Configure some attributes on the AtmosphereRequest.
 AtmosphereFramework AtmosphereFramework.destroy()
           
 AtmosphereFramework AtmosphereFramework.endPointMapper(EndpointMapper endpointMapper)
          Set the EndpointMapper.
 AtmosphereFramework AtmosphereFramework.excludeInterceptor(String interceptor)
          Exclude an AtmosphereInterceptor from being added, at startup, by Atmosphere.
 AtmosphereFramework AtmosphereFramework.externalizeDestroy(boolean externalizeDestroy)
          If set to true, the task of finishing the request/response lifecycle will not be handled by this class.
 AtmosphereFramework AtmosphereFramework.filterManipulator(BroadcasterConfig.FilterManipulator m)
           
 AtmosphereFramework AtmosphereServlet.framework()
           
 AtmosphereFramework AtmosphereConfig.framework()
          Return the AtmosphereFramework.
 AtmosphereFramework AtmosphereFramework.init()
          Initialize the AtmosphereFramework.
 AtmosphereFramework AtmosphereFramework.init(javax.servlet.ServletConfig sc)
          Initialize the AtmosphereFramework using the ServletContext.
 AtmosphereFramework AtmosphereFramework.init(javax.servlet.ServletConfig sc, boolean wrap)
          Initialize the AtmosphereFramework using the ServletContext.
 AtmosphereFramework AtmosphereFramework.interceptor(AtmosphereInterceptor c)
          Add an AtmosphereInterceptor implementation.
 AtmosphereFramework AtmosphereFramework.mappingRegex(String mappingRegex)
           
protected  AtmosphereFramework AtmosphereServlet.newAtmosphereFramework()
           
 AtmosphereFramework AtmosphereFramework.removeAllAtmosphereHandler()
          Remove all AtmosphereHandlers.
 AtmosphereFramework AtmosphereFramework.removeAllInitParams()
          Remove all init parameters.
 AtmosphereFramework AtmosphereFramework.removeAtmosphereHandler(String mapping)
          Remove an AtmosphereHandler.
 AtmosphereFramework AtmosphereFramework.resetStates()
           
 AtmosphereFramework AtmosphereFramework.setAsyncSupport(AsyncSupport asyncSupport)
          Set the AsyncSupport implementation.
 AtmosphereFramework AtmosphereFramework.setAtmosphereDotXmlPath(String atmosphereDotXmlPath)
           
 AtmosphereFramework AtmosphereFramework.setBroadcasterCacheClassName(String broadcasterCacheClassName)
          Set the BroadcasterCache class name.
 AtmosphereFramework AtmosphereFramework.setBroadcasterFactory(BroadcasterFactory broadcasterFactory)
          Set the BroadcasterFactory which is used by Atmosphere to construct Broadcaster.
 AtmosphereFramework AtmosphereFramework.setCometSupport(AsyncSupport asyncSupport)
           
 AtmosphereFramework AtmosphereFramework.setDefaultBroadcasterClassName(String bccn)
          Set the default Broadcaster class name.
 AtmosphereFramework AtmosphereFramework.setHandlersPath(String handlersPath)
           
 AtmosphereFramework AtmosphereFramework.setLibPath(String libPath)
          Set the location of the JARs containing the application.
 AtmosphereFramework AtmosphereFramework.setUseBlockingImplementation(boolean useBlockingImplementation)
           
 AtmosphereFramework AtmosphereFramework.setUseNativeImplementation(boolean useNativeImplementation)
           
 AtmosphereFramework AtmosphereFramework.setUseStreamForFlushingComments(boolean useStreamForFlushingComments)
          Set to true so Atmosphere uses AtmosphereResponse.getOutputStream() by default for write operation.
 AtmosphereFramework AtmosphereFramework.setWebsocketProcessorClassName(String webSocketProcessorClassName)
          Set the WebSocketProcessor class name used to process WebSocket requests.
 AtmosphereFramework AtmosphereFramework.setWebSocketProtocolClassName(String webSocketProtocolClassName)
           
 AtmosphereFramework AtmosphereFramework.sharedThreadPools(boolean sharedThreadPools)
           
 AtmosphereFramework AtmosphereFramework.shareExecutorServices(boolean sharedThreadPools)
          Set to true to have a ExecutorService shared among all components.
 AtmosphereFramework AtmosphereFramework.webSocketEnabled(boolean webSocketEnabled)
           
 

Methods in org.atmosphere.cpr that return types with arguments of type AtmosphereFramework
 Map<AtmosphereFramework,WebSocketProcessor> WebSocketProcessorFactory.processors()
           
 

Methods in org.atmosphere.cpr with parameters of type AtmosphereFramework
 void AtmosphereFramework.MetaServiceAction.apply(AtmosphereFramework fwk, Class<?> clazz)
           Applies this action to given class.
 AnnotationProcessor DefaultAnnotationProcessor.configure(AtmosphereFramework framework)
           
 AnnotationProcessor AnnotationProcessor.configure(AtmosphereFramework framework)
          Configure this class with an instance of AtmosphereFramework
 WebSocketProcessor WebSocketProcessorFactory.getWebSocketProcessor(AtmosphereFramework framework)
          Return the WebSocketProcessor.
 AnnotationHandler AnnotationHandler.handleAnnotation(AtmosphereFramework framework, Class<? extends Annotation> annotation, Class<?> discoveredClass)
           
<T,U extends T>
T
AtmosphereObjectFactory.newClassInstance(AtmosphereFramework framework, Class<T> classType, Class<U> defaultType)
          Delegate the creation of Object to the underlying object provider like Spring, Guice, etc.
<T,U extends T>
U
AtmosphereFramework.DefaultAtmosphereObjectFactory.newClassInstance(AtmosphereFramework framework, Class<T> classType, Class<U> defaultType)
           
 void AtmosphereConfig.StartupHook.started(AtmosphereFramework framework)
           
 

Constructors in org.atmosphere.cpr with parameters of type AtmosphereFramework
AtmosphereConfig(AtmosphereFramework framework)
           
 

Uses of AtmosphereFramework in org.atmosphere.websocket
 

Constructors in org.atmosphere.websocket with parameters of type AtmosphereFramework
DefaultWebSocketProcessor(AtmosphereFramework framework)
           
 



Copyright © 2014. All Rights Reserved.