Uses of Interface
org.axonframework.common.configuration.ComponentLifecycleHandler
Packages that use ComponentLifecycleHandler
-
Uses of ComponentLifecycleHandler in org.axonframework.common.configuration
Methods in org.axonframework.common.configuration that return ComponentLifecycleHandlerModifier and TypeMethodDescriptionAbstractComponent.HandlerRegistration.handler()Returns the value of thehandlerrecord component.Methods in org.axonframework.common.configuration with parameters of type ComponentLifecycleHandlerModifier and TypeMethodDescriptionAbstractComponent.onShutdown(int phase, ComponentLifecycleHandler<C> handler) ComponentDefinition.onShutdown(int phase, ComponentLifecycleHandler<C> handler) Registers the givenhandlerto be invoked during the shutdown lifecycle of the application in the givenphase.DecoratorDefinition.onShutdown(int phase, ComponentLifecycleHandler<D> handler) Registers the givenhandlerto be registered with the application's lifecycle during shutdown for this decorator.AbstractComponent.onStart(int phase, ComponentLifecycleHandler<C> handler) ComponentDefinition.onStart(int phase, ComponentLifecycleHandler<C> handler) Registers the givenhandlerto be invoked during the startup lifecycle of the application in the givenphase.DecoratorDefinition.onStart(int phase, ComponentLifecycleHandler<D> handler) Registers the givenhandlerto be registered with the application's lifecycle during startup for this decorator.Constructors in org.axonframework.common.configuration with parameters of type ComponentLifecycleHandlerModifierConstructorDescriptionHandlerRegistration(int phase, ComponentLifecycleHandler<C> handler) Initializes an entry holding the lifecyclehandlerand its correspondingphase.