Package javax.enterprise.event
Interface Event<T>
-
- Type Parameters:
T- the event type
public interface Event<T>The event interface is used for firing events with specific classifiers and types. A built-in event bean is provided by the container.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfire(T event)Event<T>select(java.lang.annotation.Annotation... qualifiers)<U extends T>
Event<U>select(java.lang.Class<U> subtype, java.lang.annotation.Annotation... qualifiers)<U extends T>
Event<U>select(TypeLiteral<U> subtype, java.lang.annotation.Annotation... qualifiers)
-