Uses of Interface
org.atmosphere.cpr.AtmosphereEvent

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

Uses of AtmosphereEvent in org.atmosphere.cpr
 

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

Classes in org.atmosphere.cpr that implement AtmosphereEvent
 class AtmosphereEventImpl
          AtmosphereEvent implementation for supporting HttpServletRequest and HttpServletResponse.
 

Methods in org.atmosphere.cpr that return AtmosphereEvent
 AtmosphereEvent Broadcaster.addAtmosphereEvent(AtmosphereEvent<D,E> event)
          Add a AtmosphereEvent to the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 AtmosphereEvent<HttpServletRequest,HttpServletResponse> DefaultBroadcaster.addAtmosphereEvent(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Add a AtmosphereEvent to the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 AtmosphereEvent AtmosphereHandler.onEvent(AtmosphereEvent<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.
 AtmosphereEvent AtmosphereHandler.onMessage(AtmosphereEvent<F,G> event)
          This method is invoked when the Broadcaster execute a broadcast operations.
 AtmosphereEvent Broadcaster.removeAtmosphereEvent(AtmosphereEvent<D,E> event)
          Remove a AtmosphereEvent from the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 AtmosphereEvent<HttpServletRequest,HttpServletResponse> DefaultBroadcaster.removeAtmosphereEvent(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Remove a AtmosphereEvent from the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 

Methods in org.atmosphere.cpr that return types with arguments of type AtmosphereEvent
protected  ConcurrentLinkedQueue<AtmosphereEvent<HttpServletRequest,HttpServletResponse>> DefaultBroadcaster.atmosphereEvents()
          Return the list of AtmosphereEvent registered with this Broadcaster
 Iterator<AtmosphereEvent<HttpServletRequest,HttpServletResponse>> DefaultBroadcaster.getAtmosphereEvents()
          Return an Iterator of AtmosphereEvent
 Iterator<AtmosphereEvent<HttpServletRequest,HttpServletResponse>> Broadcaster.getAtmosphereEvents()
          Return an Iterator of AtmosphereEvent
 

Methods in org.atmosphere.cpr with parameters of type AtmosphereEvent
 AtmosphereEvent Broadcaster.addAtmosphereEvent(AtmosphereEvent<D,E> event)
          Add a AtmosphereEvent to the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 AtmosphereEvent<HttpServletRequest,HttpServletResponse> DefaultBroadcaster.addAtmosphereEvent(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Add a AtmosphereEvent to the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 Future<F> Broadcaster.broadcast(F o, AtmosphereEvent event)
          Broadcast the F to all suspended response, e.g.
 BroadcasterFuture<String> DefaultBroadcaster.broadcast(String msg, AtmosphereEvent event)
          Broadcast the F to all suspended response, e.g.
 AtmosphereEvent AtmosphereHandler.onEvent(AtmosphereEvent<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.
 AtmosphereEvent AtmosphereHandler.onMessage(AtmosphereEvent<F,G> event)
          This method is invoked when the Broadcaster execute a broadcast operations.
 AtmosphereEvent Broadcaster.removeAtmosphereEvent(AtmosphereEvent<D,E> event)
          Remove a AtmosphereEvent from the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 AtmosphereEvent<HttpServletRequest,HttpServletResponse> DefaultBroadcaster.removeAtmosphereEvent(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Remove a AtmosphereEvent from the list of item to be notified when the Broadcaster.broadcast(F) is invoked.
 

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

Uses of AtmosphereEvent in org.atmosphere.handler
 

Methods in org.atmosphere.handler that return AtmosphereEvent
 AtmosphereEvent ReflectorServletProcessor.onEvent(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Delegate the request to the Servlet.service method, and add the AtmosphereEvent to the HttpServletRequest#setAttribute(java.lang.String, java.lang.Object)).
 AtmosphereEvent AbstractReflectorAtmosphereHandler.onMessage(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Write the getMessage() back to the client using the ServletResponse.getOutputStream() or ServletResponse.getWriter() By default, this method will try to use ServletResponse.getWriter().
 

Methods in org.atmosphere.handler with parameters of type AtmosphereEvent
 AtmosphereEvent ReflectorServletProcessor.onEvent(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Delegate the request to the Servlet.service method, and add the AtmosphereEvent to the HttpServletRequest#setAttribute(java.lang.String, java.lang.Object)).
 AtmosphereEvent AbstractReflectorAtmosphereHandler.onMessage(AtmosphereEvent<HttpServletRequest,HttpServletResponse> event)
          Write the getMessage() back to the client using the ServletResponse.getOutputStream() or ServletResponse.getWriter() By default, this method will try to use ServletResponse.getWriter().
 



Copyright © 2009 SUN Microsystems. All Rights Reserved.