Package | Description |
---|---|
com.netflix.hystrix |
Core functionality of Hystrix including the HystrixCommand and HystrixCollapser to be extended from.
|
com.netflix.hystrix.collapser | |
com.netflix.hystrix.strategy |
Parent package of strategies and plugin management.
|
com.netflix.hystrix.strategy.concurrency |
Strategy definition for concurrency related behavior and default implementation.
|
Class and Description |
---|
HystrixConcurrencyStrategy
Abstract class for defining different behavior or implementations for concurrency related aspects of the system with default implementations.
|
Class and Description |
---|
HystrixRequestVariableHolder
Factory that encompasses functionality of
HystrixRequestVariable for internal Hystrix code. |
Class and Description |
---|
HystrixConcurrencyStrategy
Abstract class for defining different behavior or implementations for concurrency related aspects of the system with default implementations.
|
Class and Description |
---|
HystrixConcurrencyStrategy
Abstract class for defining different behavior or implementations for concurrency related aspects of the system with default implementations.
|
HystrixRequestContext
Contains the state and manages the lifecycle of
HystrixRequestVariableDefault objects that provide request scoped (rather than only thread scoped) variables so that multiple threads within
a
single request can share state:
request scoped caching as in HystrixRequestCache for de-duping HystrixCommand executions
request scoped log of all events as in HystrixRequestLog
automated batching of HystrixCommand executions within the scope of a request as in HystrixCollapser
|
HystrixRequestVariable
Interface for a variable similar to
ThreadLocal but scoped at the user request level. |
HystrixRequestVariableDefault
Default implementation of
HystrixRequestVariable . |
HystrixRequestVariableLifecycle
Interface for lifecycle methods that are then executed by an implementation of
HystrixRequestVariable . |
Copyright © 2020. All Rights Reserved.