-
Notifications
You must be signed in to change notification settings - Fork 19
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
How to call method with JS callback #6
Comments
This is not currently possible but i'll look into adding it! |
There is still some work to be done on this but the current code in master introduces this feature. |
Great job! Thank you for fast response. |
Thanks for the report, I'm still working on the code and will push an update soon and then to maven central shortly after that |
@hosek Try it now and see what you think, i'll publish it if it's what you expected :) Only limitation currently is that the callback can't return anything. This is something that we can add later imho @Bridge
public interface Sample {
@Method("[1,2,3,4,5,6,7,8,9,10].forEach")
void looptyLoop(@JavascriptCallback Callback<Integer> val);
} |
Seems fine! Thanks a lot. Callback return value is unfortunately important for me. I will look at you implementation and maybe try to add it by myself. |
@hosek that sounds good! I might have a look at it as well |
Hi,
is possible to call method with JS callback?
Example:
In JS call looks like this:
If yes, could I ask how to define the callback in interface?
Thank you in advance for any hint!
The text was updated successfully, but these errors were encountered: