Package | Description |
---|---|
com.netflix.hystrix |
Core functionality of Hystrix including the HystrixCommand and HystrixCollapser to be extended from.
|
com.netflix.hystrix.strategy.executionhook |
Strategy definition for execution hook.
|
Modifier and Type | Method and Description |
---|---|
protected abstract HystrixCommand<BatchReturnType> |
HystrixCollapser.createCommand(Collection<HystrixCollapser.CollapsedRequest<ResponseType,RequestArgumentType>> requests)
Factory method to create a new
HystrixCommand <BatchReturnType> command object each time a batch needs to be executed. |
Modifier and Type | Method and Description |
---|---|
Collection<HystrixCommand<?>> |
HystrixRequestLog.getExecutedCommands()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
HystrixCommandExecutionHook.onComplete(HystrixCommand<T> commandInstance,
T response)
Deprecated.
|
<T> Exception |
HystrixCommandExecutionHook.onError(HystrixCommand<T> commandInstance,
HystrixRuntimeException.FailureType failureType,
Exception e)
Deprecated.
|
<T> Exception |
HystrixCommandExecutionHook.onFallbackError(HystrixCommand<T> commandInstance,
Exception e)
Deprecated.
|
<T> void |
HystrixCommandExecutionHook.onFallbackStart(HystrixCommand<T> commandInstance)
Deprecated.
|
<T> T |
HystrixCommandExecutionHook.onFallbackSuccess(HystrixCommand<T> commandInstance,
T fallbackResponse)
Deprecated.
|
<T> Exception |
HystrixCommandExecutionHook.onRunError(HystrixCommand<T> commandInstance,
Exception e)
Deprecated.
|
<T> void |
HystrixCommandExecutionHook.onRunStart(HystrixCommand<T> commandInstance)
Deprecated.
|
<T> T |
HystrixCommandExecutionHook.onRunSuccess(HystrixCommand<T> commandInstance,
T response)
Deprecated.
|
<T> void |
HystrixCommandExecutionHook.onStart(HystrixCommand<T> commandInstance)
Deprecated.
|
<T> void |
HystrixCommandExecutionHook.onThreadComplete(HystrixCommand<T> commandInstance)
Deprecated.
|
<T> void |
HystrixCommandExecutionHook.onThreadStart(HystrixCommand<T> commandInstance)
Deprecated.
|
Copyright © 2015. All Rights Reserved.