| Package | Description |
|---|---|
| com.netflix.hystrix |
Core functionality of Hystrix including the HystrixCommand and HystrixCollapser to be extended from.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HystrixCommand<R>
Used to wrap code that will execute potentially risky functionality (typically meaning a service call over the network)
with fault and latency tolerance, statistics and performance metrics capture, circuit breaker and bulkhead functionality.
|
class |
HystrixObservableCommand<R>
Used to wrap code that will execute potentially risky functionality (typically meaning a service call over the network)
with fault and latency tolerance, statistics and performance metrics capture, circuit breaker and bulkhead functionality.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<HystrixInvokableInfo<?>> |
HystrixRequestLog.getAllExecutedCommands()
Retrieve
HystrixCommand instances that were executed during this HystrixRequestContext. |
Copyright © 2015. All Rights Reserved.