-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support @HystrixCommand for rx.Single and rx.Completable similar to rx.Observable #1403
Comments
I think this could get addressed at the |
i'm willing to try if someone can point me to classes that do that for Observable, so i can understand the architecture |
In Javanica, the support is here: https://github.com/Netflix/Hystrix/blob/master/hystrix-contrib/hystrix-javanica/src/main/java/com/netflix/hystrix/contrib/javanica/command/GenericObservableCommand.java. In If you're interested in working on the extension to |
of course i'm open to suggestions. after a quick look at the code, i was thinking about adding |
@piotrturski If it's still relevant, I believe that first of all |
Hi, I stuck on the same problem - HystrixCommand with rx.Single. @dmgcodevil did you think about making a PR from your branch? |
@mendlik basically I can, however I'm not sure whether this implementation makes sense from reactive programming perspective, could you review my commit ? |
@dmgcodevil thanks for staying on this issue. I read your code and it looks ok to me. IMHO it's ready to become a PR. I also agree with your comment #1403 (comment) . It would be nice to make |
@mattrjacobs This issue can be close since PR is closed |
@HystrixCommand
doesn't work as expected for methods that returnrx.Single
orrx.Completable
. it would be nice to have them handled in a same way asrx.Observable
The text was updated successfully, but these errors were encountered: