-
Interface Summary Interface Description Event<T> Allows the application to fire events of a particular type. -
Enum Summary Enum Description Reception Distinguishes conditional observer methods from observer methods which are always notified.TransactionPhase Distinguishes the various kinds of transactional observer methods from regular observer methods which are notified immediately. -
Exception Summary Exception Description ObserverException Indicates that a checked exception was thrown by an observer method during event notification. -
Annotation Types Summary Annotation Type Description Observes Identifies the event parameter of an observer method.
Package javax.enterprise.event Description
Annotations and interfaces relating to events.
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.
An event comprises:
- A Java object, called the event object
- A (possibly empty) set of instances of qualifier types, called the event qualifiers
The 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 qualfier may be an instance of any qualifier type.
Observer methods
An observer method allows the application to receive and respond to event notifications. It acts as event consumer, 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
extension with a
parameter annotated @Observes
.
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 container lifecycle event, or the observer method belongs to an extension.
If the observer method is a 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 is not defined, and so portable applications should not rely upon the order in which observers are called.
Observer methods may throw exceptions:
- If the observer method is a transactional observer method, any exception is caught and logged by the container.
- 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)
ObserverException
.
- See Also:
javax.enterprise.inject
,Observes
,Event
,Qualifier
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 18/08/2025
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-javaee-rf-javax/enterprise/event/package-summary.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor dieser Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.