I'm trying to migrate my Spring Boot 2 Resilience4j implementation to the one provided by Spring Cloud Circuitbreaker.
So basically, from resilience4j-spring-boot2 + resilience4j-reactor dependencies to spring-cloud-starter-circuitbreaker-reactor-resilience4j dependency.
According to Spring Cloud documentation, I found out that it was possible to configure the CircuitBreaker (containing the TimeLimiter module) and the Bulkhead modules of Resilience4j through customizers.
However, I don't see any configuration available for the Retry and RateLimiter modules, that are available features in R4J documentation.
Is there a way to configure those modules directly with Spring Cloud Circuitbreaker so they are part of the ReactiveCircuitBreakerFactory? Or do I still need to configure a RetryRegistry appart from it?