This is the core module of Hystrix.
Key classes you're most likely to interact with are:
- HystrixCommand Source Javadoc
- HystrixCollapser Source Javadoc
- HystrixRequestLog Source Javadoc
- HystrixPlugins Source Javadoc
- HystrixRequestContext Source Javadoc
A general project README can be found at the project home.
The Wiki contains detailed documentation.
Binaries and dependencies for this module can be found on http://search.maven.org.
GroupId: com.netflix.hystrix
ArtifactId: hystrix-core
Example for Maven:
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-core</artifactId>
<version>1.0.2</version>
</dependency>
and for Ivy:
<dependency org="com.netflix.hystrix" name="hystrix-core" rev="1.0.2" />