https://github.com/santanusinha/hystrix-function-wrapper
A small lib to wrap any lambda with a hystrix command
https://github.com/santanusinha/hystrix-function-wrapper
functional functional-programming hystrix java-8
Last synced: 2 months ago
JSON representation
A small lib to wrap any lambda with a hystrix command
- Host: GitHub
- URL: https://github.com/santanusinha/hystrix-function-wrapper
- Owner: santanusinha
- Created: 2016-05-03T08:28:04.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T04:59:22.000Z (over 1 year ago)
- Last Synced: 2025-04-19T12:13:37.633Z (3 months ago)
- Topics: functional, functional-programming, hystrix, java-8
- Language: Java
- Size: 58.6 KB
- Stars: 2
- Watchers: 2
- Forks: 11
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hystrix Function Wrapper
An utility lib that allows lambdas to be wrapped in hystrix commands.
## Dependency
```
io.appform.core
hystrix-function-wrapper
1.1.10
```## Sample code
```
CommandFactory.create("test", "test")
.executor(() -> true) //Your lambda here
.execute();
```## License
Apache 2.0