All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jakarta.enterprise.event.Startup Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package jakarta.enterprise.event;

/**
 * 

* A CDI event with payload of type {@link Startup} and qualifier {@link jakarta.enterprise.inject.Any} is * synchronously fired by CDI container during application initialization. * Applications must never manually fire any events with {@link Startup} as payload. *

* *

* Implementations have to fire this event after the event with qualifier {@code @Initialized(ApplicationScope.class)} * but before processing requests. *

* *

* This event can be observed by integrators and libraries to perform any kind of early initialization as well as by * users as a reliable entry point for when the CDI container is ready. *

* *

* Observers are encouraged to specify {@code @Priority} to determine ordering with lower priority numbers being * recommended for platform/framework/library integration and higher numbers for user applications. *

* See also {@link jakarta.interceptor.Interceptor.Priority} */ public class Startup { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy