I have suspended function and trying to add resiliency to it using resiliency4j annotations. But it's expecting recover function to have coroutine continuation interface as one of the params
c
Chris Lee
01/14/2024, 11:24 PM
resiliency4j doesn’t know about Kotlin/Coroutines, so is only going to see the interface you pass it.
suspend
functions are transformed by the compiler into a function with a continuation parameter.