Sangyong Choi
Sangyong Choi
Hi, I have a question. If I use the resiliency4j-kotlin module, can I use it as below? gradle ```kotlin dependencies { implementation("org.springframework.cloud:spring-cloud-starter-circuitbreaker-resilience4j") implementation("io.github.resilience4j:resilience4j-kotlin:1.7.0") } ``` kotlin ```kotlin @CircuitBreaker( name =...
@RobWin thank you for answer. not working when not add resilience4j-kotlin with exception that not exists method(Continuation) but seems to working when add resilience4j-kotlin dependency. If it's my misunderstanding, can...
@RobWin thank you for answer. seems to working with suspend function in [demo example repo](https://github.com/sangyongchoi/circuitbreaker-demo) it's my misunderstanding ? **added comment** I guess annotation not working when fallback method is...