Package org.eclipse.jetty.server.handler
Interface ContextHandler.ContextScopeListener
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- ContextHandler
public static interface ContextHandler.ContextScopeListener extends java.util.EventListener
Listener for all threads entering context scope, including async IO callbacks
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
enterScope(ContextHandler.Context context, Request request, java.lang.Object reason)
void
exitScope(ContextHandler.Context context, Request request)
-
-
-
Method Detail
-
enterScope
void enterScope(ContextHandler.Context context, Request request, java.lang.Object reason)
- Parameters:
context
- The context being enteredrequest
- A request that is applicable to the scope, or nullreason
- An object that indicates the reason the scope is being entered.
-
exitScope
void exitScope(ContextHandler.Context context, Request request)
- Parameters:
context
- The context being exitedrequest
- A request that is applicable to the scope, or null
-
-