Michael
Michael

Reputation: 33307

Pass Java Callback Function to JSNI Method?

I want to pass a success and a failure callback Java function to a JSNI method.

This is what I get so far but it does not work. How can I fix it?

package c;

public class A {

test(new Callback<String, String>() {

    @Override
    public void onFailure(String reason) {
        Window.alert("fail");
    }

    @Override
    public void onSuccess(String result) {
        Window.alert("suc");
    }
});


native void test(Callback<String, String> callback) /*-{

  var callback = $entry(function(event) {
     [email protected]::onSuccess(Ljava/lang/String;)("success!");
  });

}-*/;

}

Upvotes: 5

Views: 3138

Answers (1)

Fedy2
Fedy2

Reputation: 3207

You can call the callback methods in this way:

native void test(Callback<String, String> callback) /*-{
  [email protected]::onSuccess(Ljava/lang/Object;)("success!");
}-*/;

Upvotes: 8

Related Questions