Package com.helger.scope.spi
Interface IGlobalScopeSPI
-
@IsSPIInterface public interface IGlobalScopeSPISPI for handling the global scope lifecycle. Is invoked for non-web and web scopes.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonGlobalScopeBegin(IGlobalScope aGlobalScope)Called after the global scope was startedvoidonGlobalScopeEnd(IGlobalScope aGlobalScope)Called before the global scope is shut down
-
-
-
Method Detail
-
onGlobalScopeBegin
void onGlobalScopeBegin(@Nonnull IGlobalScope aGlobalScope)
Called after the global scope was started- Parameters:
aGlobalScope- The global scope object to be used. Nevernull.
-
onGlobalScopeEnd
void onGlobalScopeEnd(@Nonnull IGlobalScope aGlobalScope)
Called before the global scope is shut down- Parameters:
aGlobalScope- The global scope object to be used. Nevernull.
-
-