public interface CallbackFunction
callamethod(param, function(){Window.alert("callback");});
Using this callback function in combination with java lambda expression would look like:
callamethod(param, () -> Window.alert("callback"));
Modifier and Type | Method and Description |
---|---|
void |
call()
The method of the Javascript function
|