Uses of Interface
org.atmosphere.cpr.AtmosphereHandler

Packages that use AtmosphereHandler
org.atmosphere.config.managed   
org.atmosphere.cpr   
org.atmosphere.handler   
 

Uses of AtmosphereHandler in org.atmosphere.config.managed
 

Classes in org.atmosphere.config.managed that implement AtmosphereHandler
 class ManagedAtmosphereHandler
          An internal implementation of AtmosphereHandler that implement support for Atmosphere 2.0 annotations.
 

Uses of AtmosphereHandler in org.atmosphere.cpr
 

Subinterfaces of AtmosphereHandler in org.atmosphere.cpr
 interface AtmosphereServletProcessor
          Simple interface that can be used to wrap a Servlet from an AtmosphereHandler.
 

Fields in org.atmosphere.cpr declared as AtmosphereHandler
 AtmosphereHandler AtmosphereFramework.AtmosphereHandlerWrapper.atmosphereHandler
           
static AtmosphereHandler AtmosphereFramework.REFLECTOR_ATMOSPHEREHANDLER
          An implementation of AbstractReflectorAtmosphereHandler.
 

Methods in org.atmosphere.cpr that return AtmosphereHandler
 AtmosphereHandler AtmosphereResourceImpl.getAtmosphereHandler()
           
 AtmosphereHandler AtmosphereResource.getAtmosphereHandler()
          Return the associated AtmosphereHandler associated with this resource.
 

Methods in org.atmosphere.cpr with parameters of type AtmosphereHandler
 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.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.
 AtmosphereResourceImpl AtmosphereResourceImpl.atmosphereHandler(AtmosphereHandler atmosphereHandler)
           
 AtmosphereResource AtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest request, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler)
          Create an AtmosphereResourceImpl.
 AtmosphereResource AtmosphereResourceFactory.create(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereResponse response, AsyncSupport<?> a, AtmosphereHandler handler)
          Create an AtmosphereResourceImpl.
 

Constructors in org.atmosphere.cpr with parameters of type AtmosphereHandler
AtmosphereFramework.AtmosphereHandlerWrapper(AtmosphereHandler atmosphereHandler, Broadcaster broadcaster)
           
AtmosphereFramework.AtmosphereHandlerWrapper(BroadcasterFactory broadcasterFactory, AtmosphereHandler atmosphereHandler, String mapping)
           
AtmosphereResourceImpl(AtmosphereConfig config, Broadcaster broadcaster, AtmosphereRequest req, AtmosphereResponse response, AsyncSupport asyncSupport, AtmosphereHandler atmosphereHandler)
          Create an AtmosphereResource.
 

Uses of AtmosphereHandler in org.atmosphere.handler
 

Classes in org.atmosphere.handler that implement AtmosphereHandler
 class AbstractReflectorAtmosphereHandler
          Simple AtmosphereHandler that reflect every call to Broadcaster.broadcast(java.lang.Object), eg sent the broadcasted event back to the remote client.
 class AtmosphereHandlerAdapter
          An implementation of AtmosphereHandler that does nothing.
 class OnMessage<T>
          Simple AtmosphereHandler that must be used with the AtmosphereResourceLifecycleInterceptor and BroadcastOnPostAtmosphereInterceptor to reduce the handling of the suspend/resume/disconnect and broadcast operation.
 class ReflectorServletProcessor
          An implementation of AtmosphereHandler using the AtmosphereServletProcessor that delegate the onRequest(org.atmosphere.cpr.AtmosphereResource) to a set of FilterChain and Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) and store the AtmosphereResource as a AtmosphereRequest.getAttribute(String) attribute named FrameworkConfig.ATMOSPHERE_RESOURCE.
 



Copyright © 2014. All Rights Reserved.