Package org.atmosphere.interceptor
Interface InvokationOrder
-
- All Known Implementing Classes:
AndroidAtmosphereInterceptor,AtmosphereHandlerServiceInterceptor,AtmosphereInterceptorAdapter,BroadcastOnPostAtmosphereInterceptor,CacheHeadersInterceptor,CorsInterceptor,HeartbeatInterceptor,IdleResourceInterceptor,JavaScriptProtocol,JSONPAtmosphereInterceptor,ManagedServiceInterceptor,MeteorServiceInterceptor,NginxInterceptor,OldBrowserPaddingInterceptor,OnDisconnectInterceptor,PaddingAtmosphereInterceptor,ServiceInterceptor,SessionCreationInterceptor,SimpleRestInterceptor,SSEAtmosphereInterceptor,SuspendTrackerInterceptor,TrackMessageSizeB64Interceptor,TrackMessageSizeInterceptor,WebSocketMessageSuspendInterceptor
public interface InvokationOrderA simple marker class to use withAtmosphereInterceptorin order to determine in which position in the interceptor's chain the AtmosphereInterceptor must be installed. Normally allAtmosphereInterceptorare installed using theInvokationOrder.PRIORITY.AFTER_DEFAULT- Author:
- Jeanfrancois Arcand
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classInvokationOrder.PRIORITY
-
Field Summary
Fields Modifier and Type Field Description static InvokationOrder.PRIORITYAFTER_DEFAULTstatic InvokationOrder.PRIORITYBEFORE_DEFAULTstatic InvokationOrder.PRIORITYFIRST_BEFORE_DEFAULT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InvokationOrder.PRIORITYpriority()Return the priority an AtmosphereInterceptor must be executed.
-
-
-
Field Detail
-
AFTER_DEFAULT
static final InvokationOrder.PRIORITY AFTER_DEFAULT
-
BEFORE_DEFAULT
static final InvokationOrder.PRIORITY BEFORE_DEFAULT
-
FIRST_BEFORE_DEFAULT
static final InvokationOrder.PRIORITY FIRST_BEFORE_DEFAULT
-
-
Method Detail
-
priority
InvokationOrder.PRIORITY priority()
Return the priority an AtmosphereInterceptor must be executed.- Returns:
- PRIORITY
-
-