Skip to content

Commit

Permalink
Updates docs so others do not struggle like I did (ReactiveX#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcombs15 authored and RobWin committed Nov 7, 2019
1 parent 0822830 commit 2ea2540
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The advantage is that you have the choice to select the decorators you need and
----
Supplier<String> supplier = () -> backendService.doSomething(param1, param2);
// In order to run this code, you will need resilience4j-all (See below)
Supplier<String> decoratedSupplier = Decorators.ofSupplier(supplier)
.withRetry(Retry.ofDefaults("name"))
.withCircuitBreaker(CircuitBreaker.ofDefaults("name"))
Expand All @@ -66,6 +67,10 @@ Setup and usage is described in our *https://resilience4j.readme.io/docs[User Gu

Resilience4j provides several core modules and add-on modules:

=== All-inclusive package

* resilience4j-all

=== Core modules

* resilience4j-circuitbreaker: Circuit breaking
Expand Down

0 comments on commit 2ea2540

Please sign in to comment.