Uses of Interface
org.atmosphere.cpr.AtmosphereResource

Packages that use AtmosphereResource
org.atmosphere.cpr   
org.atmosphere.handler   
 

Uses of AtmosphereResource in org.atmosphere.cpr
 

Classes in org.atmosphere.cpr with type parameters of type AtmosphereResource
 interface CometSupport<E extends AtmosphereResource>
          Atmosphere's supported WebServer must implement this interface in order to be auto detected by the AtmosphereServlet.
 

Classes in org.atmosphere.cpr that implement AtmosphereResource
 class AtmosphereResourceImpl
          AtmosphereResource implementation for supporting HttpServletRequest and HttpServletResponse.
 

Fields in org.atmosphere.cpr with type parameters of type AtmosphereResource
protected  ConcurrentHashMap<HttpServletRequest,AtmosphereResource> AsynchronousProcessor.aliveRequests
           
 

Methods in org.atmosphere.cpr that return AtmosphereResource
 AtmosphereResource DefaultBroadcaster.addAtmosphereResource(AtmosphereResource r)
          Add a AtmosphereResource to the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 AtmosphereResource Broadcaster.addAtmosphereResource(AtmosphereResource resource)
          Add a AtmosphereResource to the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 AtmosphereResource<HttpServletRequest,HttpServletResponse> AtmosphereResourceEventImpl.getResource()
          Return the AtmosphereResource associated with this event
 AtmosphereResource<E,F> AtmosphereResourceEvent.getResource()
          Return the AtmosphereResource associated with this event
 AtmosphereResource DefaultBroadcaster.removeAtmosphereResource(AtmosphereResource r)
          Remove a AtmosphereResource from the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 AtmosphereResource Broadcaster.removeAtmosphereResource(AtmosphereResource resource)
          Remove a AtmosphereResource from the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 

Methods in org.atmosphere.cpr that return types with arguments of type AtmosphereResource
protected  ConcurrentLinkedQueue<AtmosphereResource> DefaultBroadcaster.atmosphereResources()
          Return the list of AtmosphereResource registered with this Broadcaster
 Iterator<AtmosphereResource> DefaultBroadcaster.getAtmosphereResources()
          Return an Iterator of AtmosphereResource
 Iterator<AtmosphereResource> Broadcaster.getAtmosphereResources()
          Return an Iterator of AtmosphereResource
 

Methods in org.atmosphere.cpr with parameters of type AtmosphereResource
 AtmosphereResource DefaultBroadcaster.addAtmosphereResource(AtmosphereResource r)
          Add a AtmosphereResource to the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 AtmosphereResource Broadcaster.addAtmosphereResource(AtmosphereResource resource)
          Add a AtmosphereResource to the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 BroadcasterFuture<Object> DefaultBroadcaster.broadcast(Object msg, AtmosphereResource r)
          Broadcast the Object to all suspended response, e.g.
 Future<Object> Broadcaster.broadcast(Object o, AtmosphereResource resource)
          Broadcast the Object to all suspended response, e.g.
 void AtmosphereHandler.onRequest(AtmosphereResource<F,G> event)
          When a client send a request to its associated AtmosphereHandler, it can decide if the underlying connection can be suspended (creating a Continuation) or handle the connection synchronously.
 AtmosphereResource DefaultBroadcaster.removeAtmosphereResource(AtmosphereResource r)
          Remove a AtmosphereResource from the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 AtmosphereResource Broadcaster.removeAtmosphereResource(AtmosphereResource resource)
          Remove a AtmosphereResource from the list of item to be notified when the Broadcaster.broadcast(java.lang.Object) is invoked.
 

Method parameters in org.atmosphere.cpr with type arguments of type AtmosphereResource
 BroadcasterFuture<Object> DefaultBroadcaster.broadcast(Object msg, Set<AtmosphereResource> subset)
          Broadcast the Object to all suspended response, e.g.
 Future<Object> Broadcaster.broadcast(Object o, Set<AtmosphereResource> subset)
          Broadcast the Object to all suspended response, e.g.
 

Uses of AtmosphereResource in org.atmosphere.handler
 

Methods in org.atmosphere.handler with parameters of type AtmosphereResource
 void ReflectorServletProcessor.onRequest(AtmosphereResource<HttpServletRequest,HttpServletResponse> r)
          Delegate the request to the Servlet.service method, and add the AtmosphereResource to the HttpServletRequest#setAttribute(java.lang.String, java.lang.Object)).
 



Copyright © 2009 SUN Microsystems. All Rights Reserved.