Uses of Interface
org.glassfish.jersey.server.monitoring.ApplicationEventListener
-
Packages that use ApplicationEventListener Package Description org.glassfish.jersey.server Jersey server-side classes.org.glassfish.jersey.server.internal.monitoring Jersey server-side internal monitoring and statistics classes. -
-
Uses of ApplicationEventListener in org.glassfish.jersey.server
Fields in org.glassfish.jersey.server declared as ApplicationEventListener Modifier and Type Field Description private ApplicationEventListener
ServerRuntime. applicationEventListener
Methods in org.glassfish.jersey.server with parameters of type ApplicationEventListener Modifier and Type Method Description (package private) static ServerRuntime
ServerRuntime. createServerRuntime(InjectionManager injectionManager, ServerBootstrapBag bootstrapBag, Stage<RequestProcessingContext> processingRoot, ApplicationEventListener eventListener, ProcessingProviders processingProviders)
Constructors in org.glassfish.jersey.server with parameters of type ApplicationEventListener Constructor Description ServerRuntime(Stage<RequestProcessingContext> requestProcessingRoot, ProcessingProviders processingProviders, InjectionManager injectionManager, java.util.concurrent.ScheduledExecutorService backgroundScheduler, javax.inject.Provider<java.util.concurrent.ExecutorService> managedAsyncExecutorProvider, RequestScope requestScope, ExceptionMappers exceptionMappers, ApplicationEventListener applicationEventListener, ExternalRequestScope externalScope, javax.ws.rs.core.Configuration configuration)
-
Uses of ApplicationEventListener in org.glassfish.jersey.server.internal.monitoring
Classes in org.glassfish.jersey.server.internal.monitoring that implement ApplicationEventListener Modifier and Type Class Description class
ApplicationInfoListener
Application event listener
that listens toapplication
events and just prepareApplicationInfo
instance to be injectable.class
CompositeApplicationEventListener
application event listener
that aggregates more event listeners into one.class
MonitoringEventListener
application event listener
that listens toapplication
andrequest
events and supplies data toMonitoringStatisticsProcessor
which producesmonitoring statistics
.Fields in org.glassfish.jersey.server.internal.monitoring declared as ApplicationEventListener Modifier and Type Field Description private ApplicationEventListener
MonitoringContainerListener. listener
Fields in org.glassfish.jersey.server.internal.monitoring with type parameters of type ApplicationEventListener Modifier and Type Field Description private java.lang.Iterable<ApplicationEventListener>
CompositeApplicationEventListener. applicationEventListeners
Methods in org.glassfish.jersey.server.internal.monitoring with parameters of type ApplicationEventListener Modifier and Type Method Description void
MonitoringContainerListener. init(ApplicationEventListener listener, ApplicationEvent initFinishedEvent)
Initializes the instance with listener that must be called and initialization event.Constructor parameters in org.glassfish.jersey.server.internal.monitoring with type arguments of type ApplicationEventListener Constructor Description CompositeApplicationEventListener(java.lang.Iterable<ApplicationEventListener> applicationEventListeners)
Creates a new instance of composite event listener.
-