Uses of Interface
org.springframework.context.ApplicationListener
Packages that use ApplicationListener
Package
Description
This package builds on the beans package to add support for
message sources and for the Observer design pattern, and the
ability for application objects to obtain resources using a
consistent API.
Support classes for application events, like standard context events.
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Annotation support for asynchronous method execution.
Scheduling convenience classes for the
java.util.concurrent
and jakarta.enterprise.concurrent packages, allowing to set up a
ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Spring
context.-
Uses of ApplicationListener in org.springframework.context
Methods in org.springframework.context that return ApplicationListenerModifier and TypeMethodDescriptionstatic <T> ApplicationListener<PayloadApplicationEvent<T>>ApplicationListener.forPayload(Consumer<T> consumer) Create a newApplicationListenerfor the given payload consumer.Methods in org.springframework.context with parameters of type ApplicationListenerModifier and TypeMethodDescriptionvoidConfigurableApplicationContext.addApplicationListener(ApplicationListener<?> listener) Add a new ApplicationListener that will be notified on context events such as context refresh and context shutdown.voidConfigurableApplicationContext.removeApplicationListener(ApplicationListener<?> listener) Remove the given ApplicationListener from this context's set of listeners, assuming it got registered viaConfigurableApplicationContext.addApplicationListener(org.springframework.context.ApplicationListener<?>)before. -
Uses of ApplicationListener in org.springframework.context.event
Subinterfaces of ApplicationListener in org.springframework.context.eventModifier and TypeInterfaceDescriptioninterfaceExtended variant of the standardApplicationListenerinterface, exposing further metadata such as the supported event and source type.interfaceExtended variant of the standardApplicationListenerinterface, exposing further metadata such as the supported event and source type.Classes in org.springframework.context.event that implement ApplicationListenerModifier and TypeClassDescriptionclassGenericApplicationListeneradapter that delegates the processing of an event to anEventListenerannotated method.classGenericApplicationListeneradapter that determines supported event types through introspecting the generically declared type of the target listener.classApplicationListenerdecorator that filters events from a specified event source, invoking its delegate listener for matchingApplicationEventobjects only.Methods in org.springframework.context.event that return ApplicationListenerModifier and TypeMethodDescriptionDefaultEventListenerFactory.createApplicationListener(String beanName, Class<?> type, Method method) EventListenerFactory.createApplicationListener(String beanName, Class<?> type, Method method) Create anApplicationListenerfor the specified method.Methods in org.springframework.context.event that return types with arguments of type ApplicationListenerModifier and TypeMethodDescriptionprotected Collection<ApplicationListener<?>>AbstractApplicationEventMulticaster.getApplicationListeners()Return a Collection containing all ApplicationListeners.protected Collection<ApplicationListener<?>>AbstractApplicationEventMulticaster.getApplicationListeners(ApplicationEvent event, org.springframework.core.ResolvableType eventType) Return a Collection of ApplicationListeners matching the given event type.Methods in org.springframework.context.event with parameters of type ApplicationListenerModifier and TypeMethodDescriptionvoidAbstractApplicationEventMulticaster.addApplicationListener(ApplicationListener<?> listener) voidApplicationEventMulticaster.addApplicationListener(ApplicationListener<?> listener) Add a listener to be notified of all events.protected voidSimpleApplicationEventMulticaster.invokeListener(ApplicationListener<?> listener, ApplicationEvent event) Invoke the given listener with the given event.voidAbstractApplicationEventMulticaster.removeApplicationListener(ApplicationListener<?> listener) voidApplicationEventMulticaster.removeApplicationListener(ApplicationListener<?> listener) Remove a listener from the notification list.protected booleanAbstractApplicationEventMulticaster.supportsEvent(ApplicationListener<?> listener, org.springframework.core.ResolvableType eventType, Class<?> sourceType) Determine whether the given listener supports the given event.Method parameters in org.springframework.context.event with type arguments of type ApplicationListenerModifier and TypeMethodDescriptionvoidAbstractApplicationEventMulticaster.removeApplicationListeners(Predicate<ApplicationListener<?>> predicate) voidApplicationEventMulticaster.removeApplicationListeners(Predicate<ApplicationListener<?>> predicate) Remove all matching listeners from the set of registeredApplicationListenerinstances (which includes adapter classes such asApplicationListenerMethodAdapter, for example, for annotatedEventListenermethods).Constructors in org.springframework.context.event with parameters of type ApplicationListenerModifierConstructorDescriptionGenericApplicationListenerAdapter(ApplicationListener<?> delegate) Create a new GenericApplicationListener for the given delegate.SourceFilteringListener(Object source, ApplicationListener<?> delegate) Create a SourceFilteringListener for the given event source. -
Uses of ApplicationListener in org.springframework.context.support
Methods in org.springframework.context.support that return types with arguments of type ApplicationListenerModifier and TypeMethodDescriptionAbstractApplicationContext.getApplicationListeners()Return the list of statically specified ApplicationListeners.Methods in org.springframework.context.support with parameters of type ApplicationListenerModifier and TypeMethodDescriptionvoidAbstractApplicationContext.addApplicationListener(ApplicationListener<?> listener) voidAbstractApplicationContext.removeApplicationListener(ApplicationListener<?> listener) -
Uses of ApplicationListener in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement ApplicationListenerModifier and TypeClassDescriptionclassBean post-processor that registers methods annotated with@Scheduledto be invoked by aTaskScheduleraccording to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation. -
Uses of ApplicationListener in org.springframework.scheduling.concurrent
Classes in org.springframework.scheduling.concurrent that implement ApplicationListenerModifier and TypeClassDescriptionclassBase class for setting up aExecutorService(typically aThreadPoolExecutororScheduledThreadPoolExecutor).classFactoryBeanthat sets up aScheduledExecutorService(by default: aScheduledThreadPoolExecutor) and exposes it for bean references.classA simple implementation of Spring'sTaskSchedulerinterface, using a single scheduler thread and executing every scheduled task in an individual separate thread.classJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a bean reference of its nativeExecutorServicetype.classJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a SpringTaskExecutor.classA standard implementation of Spring'sTaskSchedulerinterface, wrapping a nativeScheduledThreadPoolExecutorand providing all applicable configuration options for it.