Getting Started
Getting started with resilience4j-reactor
Resilience4j provides a module with custom Spring Reactor operators. The operators make sure that a downstream subscriber can acquire a permission to subscribe to an upstream Publisher. The reative types Mono
and Flux
are supported.
The module expects that io.projectreactor:reactor-core
is already provided at runtime. Spring Reactor is not a transitive dependency.
repositories {
jCenter()
}
dependencies {
compile "io.github.resilience4j:resilience4j-reactor:${resilience4jVersion}"
}
Updated over 5 years ago