forked from Netflix/Hystrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8533ff
commit b4128c6
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
## hystrix-core | ||
|
||
This is the core module of Hystrix. | ||
|
||
## Documentation | ||
|
||
A general project README can be found at the [project home](../../). | ||
|
||
The [Wiki](../../wiki) contains detailed documentation. | ||
|
||
|
||
## Maven Central | ||
|
||
Binaries and dependencies for this module can be found on [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.hystrix%22%20AND%20a%3A%22hystrix-core%22). | ||
|
||
__GroupId: com.netflix.hystrix__ | ||
__ArtifactId: hystrix-core__ | ||
|
||
Example for Maven: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>com.netflix.hystrix</groupId> | ||
<artifactId>hystrix-core</artifactId> | ||
<version>1.0.2</version> | ||
</dependency> | ||
``` | ||
and for Ivy: | ||
|
||
```xml | ||
<dependency org="com.netflix.hystrix" name="hystrix-core" rev="1.0.2" /> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## hystrix-examples | ||
|
||
This module contains examples of using HystrixCommand, HystrixCollapser and other aspects of Hystrix. | ||
|
||
## Documentation | ||
|
||
Documentation related to the examples in this module is on the [How To Use](../../wiki/How-To-Use) page. | ||
|
||
|
||
## Maven Central | ||
|
||
Binaries and dependencies for this module can be found on [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.hystrix%22%20AND%20a%3A%22hystrix-examples%22). | ||
|
||
__GroupId: com.netflix.hystrix__ | ||
__ArtifactId: hystrix-examples__ | ||
|
||
Example for Maven: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>com.netflix.hystrix</groupId> | ||
<artifactId>hystrix-examples</artifactId> | ||
<version>1.0.2</version> | ||
</dependency> | ||
``` | ||
and for Ivy: | ||
|
||
```xml | ||
<dependency org="com.netflix.hystrix" name="hystrix-examples" rev="1.0.2" /> | ||
``` |