| Enum | Description |
|---|---|
| HystrixException |
Created by Mike Cowan
|
| ObservableExecutionMode |
Hystrix observable command can be executed in two different ways:
eager -
HystrixObservable.observe(),
lazy - HystrixObservable.toObservable(). |
| Annotation Type | Description |
|---|---|
| DefaultProperties |
This annotation is used to specify default parameters for
hystrix commands (methods annotated with
@HystrixCommand annotation). |
| 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.
|