Package org.jboss.weld.events
Interface WeldEvent<T>
- All Superinterfaces:
jakarta.enterprise.event.Event<T>
public interface WeldEvent<T>
extends jakarta.enterprise.event.Event<T>
Enriched version of
Event.- Author:
- Matej Novotny
-
Method Summary
Modifier and TypeMethodDescriptionselect(jakarta.enterprise.util.TypeLiteral<U> subtype, Annotation... qualifiers) select(Annotation... qualifiers) select(Class<U> subtype, Annotation... qualifiers) <X> WeldEvent<X>select(Type type, Annotation... qualifiers) Obtains a childEventfor the given required type and additional required qualifiers.Methods inherited from interface jakarta.enterprise.event.Event
fire, fireAsync, fireAsync
-
Method Details
-
select
Obtains a child
Eventfor the given required type and additional required qualifiers. Must be invoked onEvent<T>where T isObject.- Type Parameters:
X- the required type- Parameters:
type- aTyperepresenting the required typequalifiers- the additional required qualifiers- Returns:
- the child
Event - Throws:
IllegalArgumentException- if passed two instances of the same non repeating qualifier type, or an instance of an annotation that is not a qualifier typeIllegalStateException- if invoked onEvent<T>where T is of any other type thanObject
-
select
- Specified by:
selectin interfacejakarta.enterprise.event.Event<T>
-
select
- Specified by:
selectin interfacejakarta.enterprise.event.Event<T>
-
select
<U extends T> WeldEvent<U> select(jakarta.enterprise.util.TypeLiteral<U> subtype, Annotation... qualifiers) - Specified by:
selectin interfacejakarta.enterprise.event.Event<T>
-