Class ReactiveInjector
java.lang.Object
page.codeberg.rrangelo.contextfx.components.Injector
page.codeberg.rrangelo.contextfx.reactive.components.ReactiveInjector
Orchestrates both the standard and reactive dependency injection phases.
ReactiveInjector extends Injector to add a second injection pass for reactive
stereotypes. The reactiveInject() method first runs the standard Injector.inject() pipeline
(models → components → services → controllers → views), then processes the reactive equivalents
in the same order:
- Author:
- Ramon Rangel Osorio <ramon.rangel@protonmail.com>
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionReactiveInjector(ReactiveScanner reactiveScanner) Creates aReactiveInjectorbound to the givenReactiveScannerresult set. -
Method Summary
Modifier and TypeMethodDescriptionfinal voidRuns the standard injection pipeline followed by the reactive injection pipeline.
-
Constructor Details
-
ReactiveInjector
Creates aReactiveInjectorbound to the givenReactiveScannerresult set.- Parameters:
reactiveScanner- the scanner whose class list will be processed during reactive injection
-
-
Method Details
-
reactiveInject
public final void reactiveInject()Runs the standard injection pipeline followed by the reactive injection pipeline. Both pipelines operate on the same class list from the boundReactiveScanner.
-