Uses of Interface
org.atmosphere.cpr.AtmosphereInterceptor

Packages that use AtmosphereInterceptor
org.atmosphere.annotation   
org.atmosphere.client   
org.atmosphere.config.managed   
org.atmosphere.cpr   
org.atmosphere.interceptor   
org.atmosphere.websocket   
 

Uses of AtmosphereInterceptor in org.atmosphere.annotation
 

Methods in org.atmosphere.annotation that return AtmosphereInterceptor
static AtmosphereInterceptor AnnotationUtil.listeners(Class<? extends AtmosphereResourceEventListener>[] listeners, AtmosphereFramework framework)
           
 

Method parameters in org.atmosphere.annotation with type arguments of type AtmosphereInterceptor
 void AtmosphereInterceptorServiceProcessor.handle(AtmosphereFramework framework, Class<AtmosphereInterceptor> annotatedClass)
           
 

Uses of AtmosphereInterceptor in org.atmosphere.client
 

Classes in org.atmosphere.client that implement AtmosphereInterceptor
 class TrackMessageSizeInterceptor
          An AtmosphereInterceptor that add a message size and delimiter.
 

Uses of AtmosphereInterceptor in org.atmosphere.config.managed
 

Classes in org.atmosphere.config.managed that implement AtmosphereInterceptor
 class AtmosphereHandlerServiceInterceptor
          Handle Singleton,MeteorService and AtmosphereHandlerService processing.
 class ManagedServiceInterceptor
          Handle Singleton for ManagedService processing.
 class MeteorServiceInterceptor
          Handle Singleton,MeteorService processing.
 class ServiceInterceptor
           
 

Uses of AtmosphereInterceptor in org.atmosphere.cpr
 

Classes in org.atmosphere.cpr that implement AtmosphereInterceptor
 class AtmosphereInterceptorAdapter
          A Simple AtmosphereInterceptor that creates an AtmosphereInterceptorWriter and sets it as the default AsyncIOWriter on an AtmosphereResponse.
 

Fields in org.atmosphere.cpr with type parameters of type AtmosphereInterceptor
protected  LinkedList<AtmosphereInterceptor> AtmosphereFramework.interceptors
           
 LinkedList<AtmosphereInterceptor> AtmosphereFramework.AtmosphereHandlerWrapper.interceptors
           
 

Methods in org.atmosphere.cpr that return AtmosphereInterceptor
protected  AtmosphereInterceptor AtmosphereFramework.newAInterceptor(Class<? extends AtmosphereInterceptor> a)
           
 

Methods in org.atmosphere.cpr that return types with arguments of type AtmosphereInterceptor
 LinkedList<AtmosphereInterceptor> AtmosphereFramework.interceptors()
          Return the list of AtmosphereInterceptor.
 

Methods in org.atmosphere.cpr with parameters of type AtmosphereInterceptor
 AtmosphereFramework AtmosphereFramework.interceptor(AtmosphereInterceptor c)
          Add an AtmosphereInterceptor implementation.
protected  void AtmosphereFramework.positionInterceptor(InvokationOrder.PRIORITY p, AtmosphereInterceptor c, LinkedList<AtmosphereInterceptor> interceptors)
           
 

Method parameters in org.atmosphere.cpr with type arguments of type AtmosphereInterceptor
 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, List<AtmosphereInterceptor> l)
          Add an AtmosphereHandler serviced by the Servlet.
 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.
 void AtmosphereFramework.initHandlerInterceptors(LinkedList<AtmosphereInterceptor> l)
           
 Action AsynchronousProcessor.invokeInterceptors(List<AtmosphereInterceptor> c, AtmosphereResource r, int tracing)
           
protected  AtmosphereInterceptor AtmosphereFramework.newAInterceptor(Class<? extends AtmosphereInterceptor> a)
           
protected  void AtmosphereFramework.positionInterceptor(InvokationOrder.PRIORITY p, AtmosphereInterceptor c, LinkedList<AtmosphereInterceptor> interceptors)
           
 void AsynchronousProcessor.postInterceptors(List<AtmosphereInterceptor> c, AtmosphereResource r)
           
 

Uses of AtmosphereInterceptor in org.atmosphere.interceptor
 

Classes in org.atmosphere.interceptor that implement AtmosphereInterceptor
 class AndroidAtmosphereInterceptor
          Fix for the Android 2.2.x bogus HTTP implementation.
 class AtmosphereResourceLifecycleInterceptor
          This AtmosphereInterceptor implementation automatically suspends the intercepted AtmosphereResource and takes care of managing the response's state (flushing, resuming, etc.) when a Broadcaster.broadcast(java.lang.Object) is invoked.
 class AtmosphereResourceStateRecovery
          This interceptor associates a AtmosphereResource to all Broadcaster the resource was added before the underlying connection got closed and resume.
 class BroadcastOnPostAtmosphereInterceptor
          This read the request's body and invoke the associated Broadcaster of an AtmosphereResource.
 class CacheHeadersInterceptor
          At interceptor for customizing the following headers: Expire, Cache-Control, Pragma, Access-Control-Origin and Access-Control-Allow-Credential.
 class CorsInterceptor
          CORS support.
 class HeartbeatInterceptor
           An interceptor that send whitespace every in 60 seconds by default.
 class IdleResourceInterceptor
          An Interceptor that track idle AtmosphereResource and close it.
 class JavaScriptProtocol
           An Interceptor that send back to a websocket and http client the value of HeaderConfig.X_ATMOSPHERE_TRACKING_ID and HeaderConfig.X_CACHE_DATE
 class JSONPAtmosphereInterceptor
          JSONP Transport Support.
 class NginxInterceptor
          Add proper header for Nginx's buffering http://wiki.nginx.org/HttpProxyModule#proxy_buffering
This interceptor set the 'X-Accel-Buffering : No' on the AtmosphereResponse before it gets suspended.
 class OldBrowserPaddingInterceptor
          Old 8k Padding interceptor for Browser that needs whitespace when streaming is used.
 class OnDisconnectInterceptor
          When the browser close the connection, the atmosphere.js will send an unsubscribe message to tell framework the browser is disconnecting.
 class PaddingAtmosphereInterceptor
          Padding interceptor for Browser that needs whitespace when streaming is used.
 class SessionCreationInterceptor
          An interceptor that create an HttpSession on the fist received request so transport like long-polling can share the session with request coming after the suspend operation.
 class ShiroInterceptor
          Shiro Interceptor, it creates a request attribute (subject) that contains the true Subject.
 class SSEAtmosphereInterceptor
          HTML 5 Server-Side Events implementation.
 class SuspendTrackerInterceptor
          An interceptor that keep track of AtmosphereResource.uuid() and disable invocation of AtmosphereResourceEventListenerAdapter.onSuspend(org.atmosphere.cpr.AtmosphereResourceEvent) and AtmosphereResourceEventListenerAdapter.onPreSuspend(org.atmosphere.cpr.AtmosphereResourceEvent)
 class TrackMessageSizeB64Interceptor
          An AtmosphereInterceptor that adds message size and delimiter, and encodes the message in Base64.
 class WebSocketMessageSuspendInterceptor
          Mark WebSocket Message as suspended.
 

Uses of AtmosphereInterceptor in org.atmosphere.websocket
 

Methods in org.atmosphere.websocket that return types with arguments of type AtmosphereInterceptor
 List<AtmosphereInterceptor> WebSocketProcessor.WebSocketHandlerProxy.interceptors()
           
 

Constructor parameters in org.atmosphere.websocket with type arguments of type AtmosphereInterceptor
WebSocketProcessor.WebSocketHandlerProxy(Class<? extends Broadcaster> broadcasterClazz, WebSocketHandler proxied, List<AtmosphereInterceptor> interceptors)
           
 



Copyright © 2014. All Rights Reserved.