Uses of Interface
jakarta.enterprise.inject.spi.ObserverMethod
-
Packages that use ObserverMethod Package Description jakarta.enterprise.inject.spi The portable extension integration SPI.jakarta.enterprise.inject.spi.configurator -
-
Uses of ObserverMethod in jakarta.enterprise.inject.spi
Methods in jakarta.enterprise.inject.spi that return ObserverMethod Modifier and Type Method Description ObserverMethod<T>
ProcessObserverMethod. getObserverMethod()
TheObserverMethod
object that will be used by the container to invoke the observer when a matching event is fired.Methods in jakarta.enterprise.inject.spi that return types with arguments of type ObserverMethod Modifier and Type Method Description <T> Set<ObserverMethod<? super T>>
BeanContainer. resolveObserverMethods(T event, Annotation... qualifiers)
Return an ordered set of observer methods for an event.<T> Set<ObserverMethod<? super T>>
BeanManager. resolveObserverMethods(T event, Annotation... qualifiers)
Return an ordered set of observer methods for an event.Methods in jakarta.enterprise.inject.spi with parameters of type ObserverMethod Modifier and Type Method Description void
AfterBeanDiscovery. addObserverMethod(ObserverMethod<?> observerMethod)
Fires an event of typeProcessObserverMethod
containing the givenObserverMethod
and then registers theObserverMethod
with the container, thereby making it available for event notifications.void
ProcessObserverMethod. setObserverMethod(ObserverMethod<T> observerMethod)
Replaces theObserverMethod
. -
Uses of ObserverMethod in jakarta.enterprise.inject.spi.configurator
Methods in jakarta.enterprise.inject.spi.configurator with parameters of type ObserverMethod Modifier and Type Method Description ObserverMethodConfigurator<T>
ObserverMethodConfigurator. read(ObserverMethod<T> method)
Read observer meta data from a existing ObserverMethod
-