Interface FluxzeroCustomizer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback interface that can be implemented by Spring beans to customize the
FluxzeroBuilder
before it is used to build the main Fluxzero instance.
This allows applications to modularly apply configuration logic, such as registering additional components, setting default values, or modifying behaviors.
For example:
@Component
public class MyCustomizer implements FluxzeroCustomizer {
@Override
public FluxzeroBuilder customize(FluxzeroBuilder builder) {
return builder.addParameterResolver(new CustomResolver());
}
}
- See Also:
-
Method Summary
-
Method Details
-
customize
-