jakarta.enterprise.event.package-info Maven / Gradle / Ivy
Show all versions of jakarta.enterprise.cdi-api Show documentation
/*
* Copyright 2010, 2015, Red Hat, Inc., and individual contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
*
* Annotations and interfaces relating to events.
*
*
*
* {@linkplain jakarta.enterprise.inject Beans} may produce and
* consume events. Events allows beans to interact in a completely
* decoupled fashion, with no compile-time dependency between the
* interacting beans. Most importantly, it allows stateful beans
* in one architectural tier of the application to synchronize
* their internal state with state changes that occur in a
* different tier.
*
*
*
* Events may be fired synchronously or asynchronously.
*
*
*
* An event comprises:
*
*
*
* - A Java object, called the event object
* - A (possibly empty) set of instances of qualifier types, called
* the event qualifiers
*
*
*
* The {@link jakarta.enterprise.event.Event} interface is used to
* fire events.
*
*
* Event objects and event types
*
*
* The event object acts as a payload, to propagate state from
* producer to consumer. An event object is an instance of a concrete
* Java class with no type variables.
*
*
*
* The event types of the event include all superclasses and
* interfaces of the runtime class of the event object. An event type
* may not contain a type variable.
*
*
* Event qualifiers
*
*
* The event qualifiers act as topic selectors, allowing the consumer
* to narrow the set of events it observes. An event qualifier may be an
* instance of any {@linkplain jakarta.inject.Qualifier qualifier type}.
*
*
* Observer methods
*
*
* An {@linkplain jakarta.enterprise.event.Observes observer method}
* allows the application to receive and respond synchronously to event notifications.
* And an {@linkplain jakarta.enterprise.event.ObservesAsync async observer method}
* allows the application to receive and respond asynchronously to event notifications.
* they both act as event consumers, observing events of a specific type, with a
* specific set of qualifiers. Any Java type may be observed by an
* observer method.
*
*
*
* An observer method is a method of a bean class or
* {@linkplain jakarta.enterprise.inject.spi.Extension extension} with a
* parameter annotated {@link jakarta.enterprise.event.Observes @Observes}
* or {@link jakarta.enterprise.event.ObservesAsync @ObservesAsync}.
*
*
*
* An observer method will be notified of an event if:
*
*
*
* - the event object is assignable to the type observed by the observer
* method,
* - the observer method has all the event qualifiers of the event, and
* - either the event is not a
* {@linkplain jakarta.enterprise.inject.spi container lifecycle event}, or
* the observer method belongs to an
* {@linkplain jakarta.enterprise.inject.spi.Extension extension}.
*
*
*
* If a synchronous observer method is a
* {@linkplain jakarta.enterprise.event.TransactionPhase transactional
* observer method} and there is a JTA transaction in progress when the
* event is fired, the observer method is notified during the appropriate
* transaction completion phase. Otherwise, the observer is notified when
* the event is fired.
*
*
*
* The order in which observer methods are called depends on the value of
* the @{@linkplain jakarta.annotation.Priority Priority} applied to the observer.
*
*
* If no priority is defined on a observer, its priority is jakarta.interceptor.Interceptor.Priority.APPLICATION+500.
*
*
* If two observer have the same priority their relative order is undefined.
*
*
*
* Observer methods may throw exceptions:
*
*
*
* - If the observer method is a
* {@linkplain jakarta.enterprise.event.TransactionPhase transactional
* observer method}, any exception is caught and logged by the container.
* - If the observer method is asynchronous, any exception is caught by the container and added as a suppressed exception
* to a {@link java.util.concurrent.CompletionException} that could be handle by the application
* - Otherwise, the exception aborts processing of the event.
* No other observer methods of that event will be called. The
* exception is rethrown. If the exception is a checked exception,
* it is wrapped and rethrown as an (unchecked)
* {@link jakarta.enterprise.event.ObserverException}.
*
*
* @see jakarta.enterprise.inject
*
* @see jakarta.enterprise.event.Observes
* @see jakarta.enterprise.event.Event
* @see jakarta.inject.Qualifier
*/
package jakarta.enterprise.event;