-
Notifications
You must be signed in to change notification settings - Fork 25
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
newbie - is this compatible with RxJava 2.0 #16
Comments
Hi. No and the project is practically dead. |
great, so jus use RxJava from groovy I guess |
@amiracam that works, but... you have to watch out for overloaded methods that that have both closure compatible and non-closure compatible arguments. For example
This means that in these cases you have to explicitly cast the closure to whatever the functional interface class is and then it works (since these classes do only have one method in them). This is essentially a variant of the issue that this library was intended to solve via meta-programming. RxJava2 has a few more of pseudo-functional interfaces to handle and a few more classes to instrument, but other than that it would work the same. In fact, the constant need to add the cast has started to annoy me enough that I'm just starting on creating the RxJava 2 variant. Once I'm done I'll post a gist of that here (in case anyone else can use them). |
i.e. does it support Flowable api ? thanks
The text was updated successfully, but these errors were encountered: