| Enum | Description |
|---|---|
| ObservableExecutionMode |
Hystrix observable command can be executed in two different ways:
eager -
HystrixObservable.observe(),
lazy - HystrixObservable.toObservable(). |
| Annotation Type | Description |
|---|---|
| HystrixCollapser |
This annotation is used to collapse some commands into a single backend dependency call.
|
| HystrixCommand |
This annotation used to specify some methods which should be processes as hystrix commands.
|
| HystrixProperty |
This annotation allows specify Hystrix command properties in the following format:
property name = property value.
|