Package io.quarkus.arc.processor
Interface ObserverRegistrar.RegistrationContext
-
- All Superinterfaces:
BuildExtension.BuildContext
- Enclosing interface:
- ObserverRegistrar
public static interface ObserverRegistrar.RegistrationContext extends BuildExtension.BuildContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BeanStreambeans()The returned stream contains all non-synthetic beans (beans derived from classes) and beans registered by otherObserverRegistrars before the stream is created.ObserverConfiguratorconfigure()Configure a new synthetic observer.-
Methods inherited from interface io.quarkus.arc.processor.BuildExtension.BuildContext
get, put
-
-
-
-
Method Detail
-
configure
ObserverConfigurator configure()
Configure a new synthetic observer. The observer is not added to the deployment unless theObserverConfigurator.done()method is called.- Returns:
- a new synthetic observer configurator
-
beans
BeanStream beans()
The returned stream contains all non-synthetic beans (beans derived from classes) and beans registered by otherObserverRegistrars before the stream is created.- Returns:
- a new stream of beans
-
-